Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Richter BelmontBuilt-in: Light
#1
An another function of the game.
The ability to add light (colored) source.
Light script can be write down in any scene.bs type file (room, cloth, toy...) and so isn't limited to only ambiance usage.

[To see links please log-in or register here]


The light effect can be hard to notice.

First you will need a TTransform and STransform
The STransform will contain the positioning of your light.
The TTransform will require to be parented to an another TNode, which will end up being connected to the first local of the file.
I recommend to use the TTransform having Object.Name "tool_group";/Object.Name "Room_group"; or equivalent as parent.


Code:
TTransform :local_myLightPos . {[/color]
[color=#000000]TNode.SNode STransform :local_SmyLightPos;[/color]
[color=#000000]TNode.Parent TTransform :local_7;[/color]
[color=#000000]Object.Name "myLightPos";[/color]
[color=#000000]};[/color]
[color=#000000]STransform :local_SmyLightPos . {[/color]
[color=#000000]SSimpleTransform.Translation Vector3f( -0.7845, 0, 12.65);//Position[/color]
[color=#000000]SSimpleTransform.Rotation Vector3f( -0.027416, 0.900000, 0.000000 );// Rotation angle[/color]
[color=#000000]STransform.RotationPivot Vector3f( 0.000000, 0.000000, 1.000000 );//Rotation Pivot point[/color]
[color=#000000]Object.Name "SmyLightPos";[/color]
[color=#000000]};



Note that I Writed down random value in the parameter of my STransform

Then you will need a TLight that will be connected to a SLight and use the TTransform previously created as parent.


Code:
TLight :local_myLight . {[/color]
[color=#000000]TNode.SNode SLight :local_SmyLight;[/color]
[color=#000000]TNode.Parent TTransform :local_myLightPos ;[/color]
[color=#000000]Object.Name "myLight";[/color]
[color=#000000]};[/color]
[color=#000000]SLight :local_SmyLight . {[/color]
[color=#000000]SLight.Type SLight.TypeEnum.Point;[/color]
[color=#000000]SLight.Color Vector3f( 0.5, 0.7, 1 );[/color]
[color=#000000]Object.Name "SmyLight";[/color]
[color=#000000]};



As you can see, SLight Contain few parameter.

SLight.Type SLight.TypeEnum
The light type can be:.Point , .Directional or .Ambient
.Point is really similar to blender Lamp Point
.Directional should be similar to blender Lamp Spot
.Ambient seem to light up the whole room

SLight.Color
This parameter use a Vector3f() as value and set the color of the Light.

[To see links please log-in or register here]

Reply




Users browsing this thread: 1 Guest(s)
Copyright: Roy's website was started on September 3, 2013. We been on-line over 10 years and going strong.
WARNING: ADULT CONTENT: You must be 18 years of age or older to view this website.