instantreality 1.0

Component:
Networking
Status:
fully implemented
Structure type:
concrete
Standard:
X3D2.0

Inline

Inline is a Grouping node that can load nodes from another X3D scene via url. Hint: you cannot ROUTE values into an Inline scene, use IMPORT/EXPORT (or ExternProtoDeclare and ProtoInstance) instead.

Inheritance

Code

XML encoding
<Inline nameSpaceName=''
exportNameSpace='FALSE'
usingNameSpace=''
url=''
load='TRUE'
downloadMode='auto'
bboxCenter='0 0 0'
bboxSize='-1 -1 -1'
render='TRUE'
showBBox='FALSE'
logFeature=''
 />
Classic encoding
Inline {
	nameSpaceName ""
	exportNameSpace FALSE
	usingNameSpace [""]
	url [""]
	load TRUE
	downloadMode "auto"
	bboxCenter 0 0 0
	bboxSize -1 -1 -1
	render TRUE
	showBBox FALSE
	logFeature [""]
}

Interface

Filter: X3D only | Avalon only | All
id Name DataType PartType Default ValueType Description
SFVec3f bboxCenter SFVec3f initializeOnly 0 0 0 Bounding box center: position offset from origin of local coordinate system.
SFVec3f bboxSize SFVec3f initializeOnly -1 -1 -1 Bounding box size: automatically calculated, can be specified as an optimization or constraint.
SFBool load SFBool inputOutput TRUE Specifies whether the X3D file specified by the url field is loaded. Hint: use LoadSensor to detect when loading is complete. TRUE: load immediately (it's also possible to load the URL at a later time by sending a TRUE event to the load field); FALSE: no action is taken (by sending a FALSE event to the load field of a previously loaded Inline, the contents of the Inline will be unloaded from the scene graph)
SFNode metadata SFNode inputOutput MetadataObject container for payload metadata inside MetadataSet element
MFString url MFString inputOutput Each specified URL shall refer to a valid X3D file that contains a list of children nodes, prototypes and routes at the top level. Hint: Strings can have multiple values, so separate each string by quote marks. Warning: strictly match directory and filename capitalization for http links!