mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-05 20:41:06 +00:00
b716534104
git-svn-id: https://svn.eduke32.com/eduke32@4829 1a8010ca-5511-0410-912e-c29ae57300e0
31 lines
687 B
Text
31 lines
687 B
Text
|
|
gamevar tmp 0 0
|
|
gamevar cs 0 0
|
|
|
|
state setup_animatesprites
|
|
getactor[THISACTOR].mdflags tmp
|
|
orvar tmp 16
|
|
setactor[THISACTOR].mdflags tmp
|
|
ends
|
|
|
|
onevent EVENT_EGS
|
|
state setup_animatesprites
|
|
endevent
|
|
|
|
onevent EVENT_LOADACTOR
|
|
state setup_animatesprites
|
|
endevent
|
|
|
|
// Assuming a PALETTE.DAT with e.g.:
|
|
// blend 0: 50/50 alpha
|
|
// blend 1: factor 1.0 additive
|
|
//
|
|
// See discussion starting from
|
|
// http://forums.duke4.net/topic/775-eduke32-20-and-polymer/page__view__findpost__p__213408
|
|
onevent EVENT_ANIMATESPRITES
|
|
getactor[THISACTOR].cstat cs
|
|
ifvarand cs 2 ifvarand cs 512
|
|
setactor[THISACTOR].blend 1
|
|
else
|
|
setactor[THISACTOR].blend 0
|
|
endevent
|