DNF/sqr/character/creatormage/ap_creatormage_state.nut

66 lines
1.1 KiB
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

function sq_AddFunctionName(appendage)
{
appendage.sq_AddFunctionName("proc", "proc_appendage_creator_state")
appendage.sq_AddFunctionName("prepareDraw", "prepareDraw_appendage_creator_state")
appendage.sq_AddFunctionName("onStart", "onStart_appendage_creator_state")
appendage.sq_AddFunctionName("onEnd", "onEnd_appendage_creator_state")
appendage.sq_AddFunctionName("isEnd", "isEnd_appendage_creator_state")
}
function sq_AddEffect(appendage)
{
}
function proc_appendage_creator_state(appendage)
{
if(!appendage) {
return;
}
}
function onStart_appendage_creator_state(appendage)
{
if(!appendage) {
return;
}
local obj = appendage.getParent();
}
function prepareDraw_appendage_creator_state(appendage)
{
if(!appendage) {
return;
}
local obj = appendage.getParent();
}
function onEnd_appendage_creator_state(appendage)
{
if(!appendage) {
return;
}
local obj = appendage.getParent();
}
function isEnd_appendage_creator_state(appendage)
{
if(!appendage) return false;
local T = appendage.getTimer().Get();
return false;
}