tweaks
This commit is contained in:
Alberto Ramos
2010-08-22 15:53:15 -06:00
parent ce94c8a041
commit 2e7bb5457c
4 changed files with 85 additions and 83 deletions
+12 -2
View File
@@ -8,6 +8,11 @@ Noteskin.bBlanks = {
["Roll Tail Inactive"] = true;
["Roll Tail Inactive"] = true;
}
Noteskin.PartsToRotate = {
--["elemenu"] = true|false;
["Roll Head Active"] = false;
["Roll Head Inactive"] = false;
}
Noteskin.ElementRedirs = {
--["element"] = "redirected_element";
["Hold Head Active"] = "Tap Note";
@@ -89,8 +94,13 @@ local function func()
local t = LoadActor(path)
t.BaseRotationX=Noteskin.BaseRotX[sButton]
t.BaseRotationY=Noteskin.BaseRotY[sButton]
local bRotate = Noteskin.PartsToRotate[ElementToLoad]
--rotate by default
if bRotate == nil then bRotate = true end
if bRotate then
t.BaseRotationX=Noteskin.BaseRotX[sButton]
t.BaseRotationY=Noteskin.BaseRotY[sButton]
end
return t
end