Files
DNF_DEV_SQR/main.nut
2025-10-25 15:51:53 +08:00

18 lines
477 B
Plaintext

function _InitFont_() {
return [
{ path = "Fonts/VonwaonBitmap-12px.ttf", size = 12 },
{ path = "Fonts/VonwaonBitmap-12px.ttf", size = 24 },
{ path = "Fonts/NotoSansSC-Light.otf", size = 12 }
];
}
function main() {
//初始化随机数种子
srand(time());
local SM = StateMachine.GetInstance();
SM.RegisterState(CHARACTERJOB.SWORDMAN, "Character_Rest", 0);
SM.RegisterState(CHARACTERJOB.SWORDMAN, "Character_Move", 1);
}