1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
function ZO_CharacterCreateTriangle_Gamepad : New ( triangleControl , setterFn , updaterFn , triangleStringId , topStringId , leftStringId , rightStringId )
local triangle = ZO_CharacterCreateTriangle_Base . New ( self , triangleControl , setterFn , updaterFn , triangleStringId , topStringId , leftStringId , rightStringId )
-- Prevent the Focus Movement Controller from interfering with the triangle movement
triangle . disableFocusMovementController = true
return triangle
end
return
end
local deadZone = 0.0
local scale = 0.02
x = x + mx * scale
end
y = y - my * scale
end
end
end
else
end
end |