Hello, my character takes a flashlight that is worn on the head , but I would like to put on full bright material representing the portion where the light emitted , as I do this?
Textures FullBright on Model
Textures FullBright on Model
http://www.iris3dgames.com Reality Factory Spanish
Re: Textures FullBright on Model
As I make the glass shine the flashlight ?
http://www.iris3dgames.com Reality Factory Spanish
Re: Textures FullBright on Model
Put a bone where you want the light on the hat and attach a corona and light to that bone.
Re: Textures FullBright on Model
It has to be a seperate actor that doe s not use its master lightning settings,but has its own lightning confuguration like Ambient Light 127 127 127 or even 255 255 255 so it always shows up even in the dark.
You can possibly use the low level commands if it is a pawn hat you can set it to "glow" in the Pawn ini settings or even change the lightning through a script with commands like that
If it is just an attribute entity i think the ambient and fill color settings can do what you want.
You can possibly use the low level commands if it is a pawn hat you can set it to "glow" in the Pawn ini settings or even change the lightning through a script with commands like that
Code: Select all
SetEntityLighting(string EntityName, float FillColorR, float FillColorG, float FillColorB, float AmbientColorR, float AmbientColorG, float AmbientColorB, bool AmbientLightFromFloor);
Changes the FillColor and AmbientColor of the specified entity (Pawn, StaticEntityProxy, Attribute, Player). For the player use "Player" as EntityName.
If it is just an attribute entity i think the ambient and fill color settings can do what you want.