Sqr/appendage/character/ap_atmage_buff.nut

78 lines
1.4 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_atmage_buff")
appendage.sq_AddFunctionName("prepareDraw", "prepareDraw_appendage_atmage_buff")
appendage.sq_AddFunctionName("onStart", "onStart_appendage_atmage_buff")
appendage.sq_AddFunctionName("onEnd", "onEnd_appendage_atmage_buff")
appendage.sq_AddFunctionName("drawAppend", "drawAppend_appendage_atmage_buff")
appendage.sq_AddFunctionName("isEnd", "isEnd_appendage_atmage_buff")
}
function sq_AddEffect(appendage)
{
}
function proc_appendage_atmage_buff(appendage)
{
if(!appendage) {
return;
}
}
function onStart_appendage_atmage_buff(appendage)
{
if(!appendage) {
return;
}
local obj = appendage.getParent();
}
function prepareDraw_appendage_atmage_buff(appendage)
{
if(!appendage) {
return;
}
}
function onEnd_appendage_atmage_buff(appendage)
{
if(!appendage) {
return;
}
}
function drawAppend_appendage_atmage_buff(appendage, isOver, x, y, isFlip)
{
if(!appendage) {
return;
}
local T = appendage.getTimer().Get();
local validT = appendage.getAppendageInfo().getValidTime()
if(validT < T)
{
appendage.setValid(false);
}
}
// 横渐螳 陕撩 渗褐暧 部睡碟
function isEnd_appendage_atmage_buff(appendage)
{
if(!appendage) return false;
return false;
}