HowTo/Bridge/casts shadows

From TrainzOnline
< HowTo | Bridge(Difference between revisions)
Jump to: navigation, search
Line 29: Line 29:
 
   }
 
   }
 
    
 
    
   [[/shadow/]
+
   [[/shadow/]]
 
   {
 
   {
 
     mesh                                "bridge_shadow\bridge_shadow.im"
 
     mesh                                "bridge_shadow\bridge_shadow.im"

Revision as of 09:23, 10 February 2022

casts_shadows

This is a required tag

Defines whether or not the shadows are cast.

0 = shadows off

1 = shadows on

If shadows are on there needs to be a bridge_shadow.im model, for the bridge spline model, and the initiator and terminator segments (if they are used). Below is a example of what would be need to be added to the mesh table if you are going to have meshes for the bridge sections -

mesh-table {

 default
 {
   mesh                                "bridge.im"
 }
 
 initator
 {
   mesh                                "bridge_start\bridge_start.im"
 }
 
terminator
 {
    mesh                                "bridge_end\bridge_end.im"
 }
 
 shadow
 {
   mesh                                "bridge_shadow\bridge_shadow.im"
 }
 
 initiator-shadow
 {
   mesh                                "bridge_start\bridge_start_shadow.im"
 }
 
 terminator-shadow
 {
   mesh                                "bridge_end\bridge_end_shadow.im"
 }

}

Personal tools