|
|
Line Skip-Alphamania
Added on 6/10/1999
|
Requires Effector Set 1 Behavior Support Scripts
property pSkip,pDraw
on getPropertyDescriptionList
if not alphamaniacCheck(the currentSpriteNum) then exit
set pList=[:]
addProp pList,#pSkip,[format:#integer,comment:"Skip Lines:", Default:0]
addProp pList,#pDraw,[format:#integer,comment:"Draw Lines:",Default:1]
return pList
end
on beginSprite me
set s=the spriteNum of me
if not alphaManiac(s) then exit
lineSkip(sprite s,[linesToSkip:pSkip,linesToDraw:pDraw])
end
|
|