Files
Sqr/character/atmage/expressions/ap_atmage_expression.nut
2024-03-18 21:37:40 +08:00

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_expression")
appendage.sq_AddFunctionName("prepareDraw", "prepareDraw_appendage_expression")
appendage.sq_AddFunctionName("onStart", "onStart_appendage_expression")
appendage.sq_AddFunctionName("onEnd", "onEnd_appendage_expression")
appendage.sq_AddFunctionName("isEnd", "isEnd_appendage_expression")
}
function sq_AddEffect(appendage)
{
}
function proc_appendage_expression(appendage)
{
if(!appendage) {
return;
}
}
function onStart_appendage_expression(appendage)
{
if(!appendage) {
return;
}
local obj = appendage.getParent();
}
function prepareDraw_appendage_expression(appendage)
{
if(!appendage) {
return;
}
local obj = appendage.getParent();
}
function onEnd_appendage_expression(appendage)
{
if(!appendage) {
return;
}
local obj = appendage.getParent();
}
function isEnd_appendage_expression(appendage)
{
if(!appendage) return false;
local T = appendage.getTimer().Get();
return false;
}