Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
E
ElvUI
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Hekili
ElvUI
Commits
5ff16411
Commit
5ff16411
authored
Jun 04, 2019
by
Merathilis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
And change MotionType aswell.
parent
a2433c72
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
5 deletions
+4
-5
ElvUI/Modules/Nameplates/Nameplates.lua
ElvUI/Modules/Nameplates/Nameplates.lua
+0
-2
ElvUI/Settings/Profile.lua
ElvUI/Settings/Profile.lua
+0
-1
ElvUI_OptionsUI/Nameplates.lua
ElvUI_OptionsUI/Nameplates.lua
+4
-2
No files found.
ElvUI/Modules/Nameplates/Nameplates.lua
View file @
5ff16411
...
...
@@ -106,8 +106,6 @@ function NP:SetCVars()
SetCVar
(
'nameplateOtherBottomInset'
,
-
1
)
end
SetCVar
(
'nameplateMotion'
,
NP
.
db
.
motionType
==
'STACKED'
and
1
or
0
)
SetCVar
(
'NameplatePersonalShowAlways'
,
NP
.
db
.
units
.
PLAYER
.
visibility
.
showAlways
and
1
or
0
)
SetCVar
(
'NameplatePersonalShowInCombat'
,
NP
.
db
.
units
.
PLAYER
.
visibility
.
showInCombat
and
1
or
0
)
SetCVar
(
'NameplatePersonalShowWithTarget'
,
NP
.
db
.
units
.
PLAYER
.
visibility
.
showWithTarget
and
1
or
0
)
...
...
ElvUI/Settings/Profile.lua
View file @
5ff16411
...
...
@@ -438,7 +438,6 @@ P.nameplates = {
fontOutline
=
'OUTLINE'
,
fontSize
=
11
,
lowHealthThreshold
=
0
.
4
,
motionType
=
'STACKED'
,
nameColoredGlow
=
false
,
showEnemyCombat
=
'DISABLED'
,
showFriendlyCombat
=
'DISABLED'
,
...
...
ElvUI_OptionsUI/Nameplates.lua
View file @
5ff16411
...
...
@@ -4311,9 +4311,11 @@ E.Options.args.nameplate = {
order = 1,
name = L["
UNIT_NAMEPLATES_TYPES
"],
desc = L["
Set
to
either
stack
nameplates
vertically
or
allow
them
to
overlap
.
"],
get = function() return tonumber(GetCVar('nameplateMotion')) end,
set = function(_, value) SetCVar('nameplateMotion', value) end,
values = {
[
'STACKED'] = L["
UNIT_NAMEPLATES_TYPE_2
"],
[
'OVERLAP'] = L["
UNIT_NAMEPLATES_TYPE_1
"],
[
0] = L["
UNIT_NAMEPLATES_TYPE_1
"],
[
1] = L["
UNIT_NAMEPLATES_TYPE_2
"],
},
},
showEnemyCombat = {
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment