The following warnings occurred:
Warning [2] count(): Parameter must be an array or an object that implements Countable - Line: 906 - File: showthread.php PHP 7.2.24-0ubuntu0.18.04.17 (Linux)
File Line Function
/showthread.php 906 errorHandler->error



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
Turning light on and off in trigger area?
Dominic0904 Offline
Member

Posts: 63
Threads: 14
Joined: Apr 2011
Reputation: 0
#1
Turning light on and off in trigger area?

Hey everyone,

Basically what I wanted to do is have a light turn on when I walk into a trigger area, then turns off again when the player walks out of that trigger area. Then turns on when they walk back into it and so on and so forth.

Here's my script so far;

PHP Code: (Select All)
void OnStart()
{

GiveItemFromFile("lantern""lantern.ent");

AddEntityCollideCallback("Player""wrong_door_area""WrongDoor"false1);

SetLightVisible("SpotLight_6"false);

}

void WrongDoor(string &in asParentstring &in asChildint alState)
{
    
SetLightVisible("SpotLight_6"true);
}

void OnEnter()
{

}
void OnLeave()
{




So the Spot Light is disabled as soon as the level loads and it turns on fine when the player walks into the trigger area, but it stays on when the player walks out.
How can I script it so the player can walk in and out of the trigger area to make the light go off and on?

Thanks.
05-08-2013, 07:22 PM
Find


Messages In This Thread
Turning light on and off in trigger area? - by Dominic0904 - 05-08-2013, 07:22 PM



Users browsing this thread: 1 Guest(s)