Facebook Twitter YouTube Frictional Games | Forum | Privacy Policy | Dev Blog | Dev Wiki | Support | Gametee


Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Lag issue when triggering scripts
The chaser Offline
Posting Freak

Posts: 2,486
Threads: 76
Joined: Jun 2012
Reputation: 113
#13
RE: Lag issue when triggering scripts

(05-31-2013, 02:53 PM)junkfood2121 Wrote:
(05-30-2013, 09:24 PM)The chaser Wrote: Oh, I'm sorry then. You could try to make something different though: Why must everything go together? You can put timers to distribute the falling ceiling, like this:



void RoofScare(string &in asParent, string &in asChild, int alState)
{
SetEntityActive("default_entity_1", false);

CreateParticleSystemAtEntity("", "ps_dust_elevator_crash.ps", "Area_BreakDust", false);

PlaySoundAtEntity("", "break_wood.snt", "Area_BreakDust", 0.0f, false);

AddTimer("", 0.8, "Do");

}

void Do (string &in asTimer)
{
SetEntityActive("default_entity_2", true);
SetEntityActive("wooden_board02_*", true);
SetEntityActive("wooden_board03_*", true);
}

Well, thing is that the ceiling has to break at the same time as the sound and boards fall down, else it will look very un-natural!
But I will look for a workaround, otherwise I will just have to accept this. Smile

Well, use this script if the player doesn't see the broken roof when this happens. Anyways, if the player is right there, where the script has place, lag isn't an issue.

THE OTHERWORLD (WIP)
[Image: k6vbdhu]

Aculy iz dolan.
05-31-2013, 03:44 PM
Find


Messages In This Thread
RE: Lag issue when triggering scripts - by The chaser - 05-31-2013, 03:44 PM



Users browsing this thread: 1 Guest(s)