XG: Delaying the actions in a floor chain?
Maybe this forum needs a generic editing questions sub forum (because there is a lot about editing/modding that isn't game specific or related to the source code)?
Anyways. I wish to make a floor chain which performs several actions over a certain time after it is activated (rather than having all the actions occur instantly).
Can it be done? I know that I can't simply link the floor chain into a normal chain.
Anyways. I wish to make a floor chain which performs several actions over a certain time after it is activated (rather than having all the actions occur instantly).
Can it be done? I know that I can't simply link the floor chain into a normal chain.
Comments
Sector Type {
ID = 20000;
Floor chain = 20001;
Floor chain flags = "scef_player_a";
Floor chain min interval = 3;
Floor chain max interval = 3;
Floor chain count = -1;
}
For instance the above activates the instant the player first steps on the sector then reactivates every 3 seconds if the player is still standing on the sector.
However, I wish to make a floor chain that also performs some actions a short time after being activated (i.e like you delay line chain actions with FPx).
Can this be done, or are floor chains limited to instant activation?