You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
1.1 KiB
25 lines
1.1 KiB
3 years ago
|
#ifndef YDWEEffectIncluded
|
||
|
#define YDWEEffectIncluded
|
||
|
|
||
|
library YDWEJapiEffect
|
||
|
native EXGetEffectX takes effect e returns real
|
||
|
native EXGetEffectY takes effect e returns real
|
||
|
native EXGetEffectZ takes effect e returns real
|
||
|
native EXSetEffectXY takes effect e, real x, real y returns nothing
|
||
|
native EXSetEffectZ takes effect e, real z returns nothing
|
||
|
native EXGetEffectSize takes effect e returns real
|
||
|
native EXSetEffectSize takes effect e, real size returns nothing
|
||
|
native EXEffectMatRotateX takes effect e, real angle returns nothing
|
||
|
native EXEffectMatRotateY takes effect e, real angle returns nothing
|
||
|
native EXEffectMatRotateZ takes effect e, real angle returns nothing
|
||
|
native EXEffectMatScale takes effect e, real x, real y, real z returns nothing
|
||
|
native EXEffectMatReset takes effect e returns nothing
|
||
|
native EXSetEffectSpeed takes effect e, real speed returns nothing
|
||
|
|
||
|
function YDWESetEffectLoc takes effect e, location loc returns nothing
|
||
|
call EXSetEffectXY(e, GetLocationX(loc), GetLocationY(loc))
|
||
|
endfunction
|
||
|
endlibrary
|
||
|
|
||
|
#endif /// YDWEEffectIncluded
|