Visual scene FX Composer 2 extension

From COLLADA Public Wiki
Revision as of 05:00, 23 February 2009 by Elf (talk | contribs) (extensions->extension)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
Extension information
  • Purpose: unstated
  • Company(s): NVIDIA
  • Product(s): FX Composer 2
  • Last updated: unstated
  • Contact for technical issues:
This article is part of the COLLADA extensions directory
Adding to the extensions directory

Evaluate Scene Enable Switch

This extra at the visual scene level defines the state of the evaluate scene nodes present in the current scene. In the example below, only the first two evaluate_scenes are to be enabled upon loading

See example below.

Example

<visual_scene id="Scene" name="Scene">
 <evaluate_scene name="EvaluateScene">
   <render camera_node=""/>
 </evaluate_scene>
 <evaluate_scene name="EvaluateScene1">
   <render camera_node=""/>
 </evaluate_scene>
 <evaluate_scene name="EvaluateScene2">
   <render camera_node="">
       <instance_effect url="#Material"/>
   </render>
 </evaluate_scene>
 <extra type="evaluatescene_enables">
   <technique profile="NVIDIA_FXCOMPOSER">
       <true/>
       <true/>
       <false/>
   </technique>
 </extra> 
</visual_scene>