Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class MusicManager : Actor
- {
- void A_Tick()
- {
- // list actors.
- ActorIterator ai = ActorIterator.Create(0);
- Actor mo;
- while (mo = ai.Next())
- {
- A_Log(Object(mo).GetClassName());
- }
- }
- States
- {
- Spawn:
- TNT1 A 1 A_Tick();
- loop;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment