~ubuntu-branches/ubuntu/utopic/castle-game-engine/utopic

« back to all changes in this revision

Viewing changes to src/x3d/doc/x3d_nodes/2/Layering.txt

  • Committer: Package Import Robot
  • Author(s): Abou Al Montacir
  • Date: 2013-04-27 18:06:40 UTC
  • Revision ID: package-import@ubuntu.com-20130427180640-eink4nmwzuivez1c
Tags: upstream-4.0.1
ImportĀ upstreamĀ versionĀ 4.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
X3DLayerNode : X3DNode {
 
2
  SFBool [in,out] isPickable TRUE
 
3
  SFNode [in,out] viewport NULL [X3DViewportNode]
 
4
}
 
5
 
 
6
X3DViewportNode : X3DGroupingNode {
 
7
}
 
8
 
 
9
Layer : X3DLayerNode { 
 
10
  MFNode [in]     addChildren    []    [X3DChildNode]
 
11
  MFNode [in]     removeChildren []    [X3DChildNode]
 
12
  MFNode [in,out] children       []    [X3DChildNode]
 
13
}
 
14
 
 
15
LayerSet : X3DNode { 
 
16
  SFInt32 [in,out]  activeLayer 0    (-Inf,Inf)
 
17
  MFNode  [in,out]  layers      []   [X3DLayerNode]
 
18
  MFInt32 [in,out]  order       [0]   (0,Inf)
 
19
}
 
20
 
 
21
Viewport : X3DGroupingNode, X3DBoundedObject {
 
22
  MFFloat [in,out] clipBoundary   0 1 0 1  [0,1]
 
23
}
 
24