Ver Fonte

Turn on transparency.
Turn off lighting.

aignacio_sf há 19 anos atrás
pai
commit
7088e50a28
1 ficheiros alterados com 4 adições e 0 exclusões
  1. 4 0
      direct/src/motiontrail/MotionTrail.py

+ 4 - 0
direct/src/motiontrail/MotionTrail.py

@@ -58,9 +58,13 @@ class MotionTrail(NodePath):
 
         # set render states
         node_path.node ( ).setAttrib (ColorBlendAttrib.make (ColorBlendAttrib.MAdd))
+        node_path.setTransparency (True)
         node_path.setDepthWrite (False)
         node_path.setTwoSided (True)
 
+        # do not light
+        node_path.setLightOff ( )
+        
         # do not display in reflections
         OTPRender.renderReflection (False, self, 'motion_trail', None)