calendarselectorscript.luac.lua

来自「htc manila 2 sourcecode」· LUA 代码 · 共 22 行

LUA
22
字号
-- Decompiled using luadec 0.4 by sztupy (http://winmo.sztupy.hu)
-- Command line was: -l ;0,4;0,4; 6866786a_manila.luac 

HandleSelectorMouseDown = function(l_1_0)
   local l_1_1 = l_1_0.Namespace:FindName("Highlight")
   if l_1_1 ~= nil then
      l_1_1.Opacity:Interpolate(100, 2, 0, Interpolate_Linear)
   end
end

HandleSelectorMouseUp = function(l_2_0)
   local l_2_1 = l_2_0.Namespace:FindName("Highlight")
   if l_2_1 ~= nil then
      l_2_1.Opacity:Interpolate(0, 2, 0, Interpolate_Linear)
   end
end

Selector.onPress:connect(HandleSelectorMouseDown)
Selector.onRelease:connect(HandleSelectorMouseUp)
Selector.onReleaseOutside:connect(HandleSelectorMouseUp)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?