Frictional Games Forum (read-only)

Full Version: How to activate a billboard?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
The Colour of my billboard is 0.An if i walk in a area, my billboard should turn bright and blue.how?
Tie them to a light and activate that light.
Otherwise you cannot spawn billboards.
Have your billboard's diffuse color be the color you want it to turn into: bright blue. Now create a point light somewhere off to the side of your map where the player will not see it. Next, go to the 'Billboard' tab after having it selected, and click the 'Connect' button next to the Connected light name field. Now click on the point light you created.

In your script, call FadeLightTo("connected_point_light", 0, 0, 0, 0, 0, 0); at OnStart(). Then, when you want the billboard to fade in, call FadeLightTo("connected_point_light", 1, 1, 1, 1, 1, X); where X is the fade-in time.

Good luck Smile
Okay thanks! Smile