📄 _frameaction.js
字号:
/*******************************************\
游戏人帧动作类(2006-7-26)
This JavaScript was writen by Dron.
@2003-2008 Ucren.com All rights reserved.
\*******************************************/
DronFw.Class.FrameAction = function (timer)
{
var me = this;
this.Timer = (typeof(timer)=="number") ? timer : 80;
this.load = function (commandArray)
{
this.commandArray = commandArray;
}
this.start = function (n)
{
(typeof(n)=="number") || (n=0);
if(n>=this.commandArray.length)return;
eval(this.commandArray[n]);
setTimeout(function(){me.start(++n)},this.Timer);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -