Targeted camera and light FCOLLADA extension: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 8: | Line 8: | ||
!width=20%| Element Name !! Description | !width=20%| Element Name !! Description | ||
|- | |- | ||
| target || | | <target> || Contains the url of the scene node target. | ||
|- | |- | ||
|} | |} |
Revision as of 19:43, 20 June 2007
Extension information |
---|
|
This article is part of the COLLADA extensions directory |
Adding to the extensions directory |
Targeted Cameras and Lights
This <extra> at the <camera> or <light> level defines a targeted camera or light. It does not instantiate the target scene node, so that it is mutually exclusive with multiple camera and light instances. While the camera node may include rotation transforms, only the roll and translation should affect the final placement of the camera and light, while the orientation is determined by the relative position of the targeted scene node.
Element Name | Description |
---|---|
<target> | Contains the url of the scene node target. |
Example
<library_cameras> <camera id="Camera"> <optics>...</optics> <extra> <technique profile="FCOLLADA"> <target>#Camera_Target-node</target> </technique> </extra> </camera> </library_cameras> ... <library_visual_scenes> <visual_scene id="VisualScene"> <node id="Camera-node"> <instance_camera url="#Camera"/> </node> <node id="Camera_Target-node"> < !-- It is suggested that this node be a 'locator': some transforms, no instances and child nodes. -- > </node> </visual_scene> </library_visual_scenes>