?? none.as
字號(hào):
class mx.transitions.easing.None
{
function None()
{
} // End of the function
static function easeNone(t, b, c, d)
{
return (c * t / d + b);
} // End of the function
static function easeIn(t, b, c, d)
{
return (c * t / d + b);
} // End of the function
static function easeOut(t, b, c, d)
{
return (c * t / d + b);
} // End of the function
static function easeInOut(t, b, c, d)
{
return (c * t / d + b);
} // End of the function
} // End of Class
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -