Files
ppg-modkit/extracted_wiki_content/snippets/creating_a_light.txt

20 lines
727 B
Plaintext

URL: https://wiki.studiominus.nl/snippets/createLight.html
Title: People Playground Modding - Creating a light
==================================================
Creating a light
This code snippet shows how to create a light that interacts with the lighting system.
//creating a light object with myself as a parent, a red colour, a radius of 5 units, and a brightness of 1 (default)
var glow = ModAPI.CreateLight(transform, Color.red, 5, 1);
//change the colour to whatever the hell
glow.Color = Color.yellow;
//blind the player
glow.Brightness = 1500;
//devour the world
glow.Radius = 1000;
//it's a component of a new child GameObject so you can set its local position
glow.transform.localPosition = new Vector3(0,0,0);