Code: Select all
ACTOR Example
{
<insertstuff>
States
{
Spawn:
SKLL A 4 A_SetTranslucent(.X,X) A_Chase
Loop
}
}
Moderator: Graf Zahl
Code: Select all
ACTOR Example
{
<insertstuff>
States
{
Spawn:
SKLL A 4 A_SetTranslucent(.X,X) A_Chase
Loop
}
}
In other words:Graf Zahl wrote:Insert zero length states to execute 2 code pointers in the same frame.
Code: Select all
ACTOR Example
{
<insertstuff>
States
{
Spawn:
SKLL A 4 A_SetTranslucent(.X,X)
SKLL A 0 A_Chase
Loop
}
}
Code: Select all
ACTOR Example
{
<insertstuff>
States
{
Spawn:
SKLL A 0 A_SetTranslucent(.X,X)
SKLL A 4 A_Chase
Loop
}
}