type | restriction of xs:NMTOKEN | |||||||||||||||||||||||
properties |
|
|||||||||||||||||||||||
used by |
|
|||||||||||||||||||||||
facets |
|
|||||||||||||||||||||||
annotation |
|
|||||||||||||||||||||||
source | <xs:simpleType name="accessTypeChoices"> <xs:annotation> <xs:appinfo>accessTypeChoices are strictly allowed enumeration values for accessType, used when defining field declarations within a Script node or ProtoDeclare/ExternProtoDeclare statements. Original accessType name values in VRML97 were eventIn, eventOut, field, exposedField respectively. Bounded, no additional values are allowed.</xs:appinfo> <xs:documentation source="https://www.web3d.org/documents/specifications/19775-1/V3.3/Part01/concepts.html#FieldSemantics"/> </xs:annotation> <xs:restriction base="xs:NMTOKEN"> <xs:enumeration value="initializeOnly"> <xs:annotation> <xs:appinfo>A field with accessType initializeOnly can be initialized, but cannot send or receive events.</xs:appinfo> </xs:annotation> </xs:enumeration> <xs:enumeration value="inputOnly"> <xs:annotation> <xs:appinfo>A field with accessType inputOnly cannot be initialized or included in a scene file, but can receive input event values via a ROUTE.</xs:appinfo> </xs:annotation> </xs:enumeration> <xs:enumeration value="outputOnly"> <xs:annotation> <xs:appinfo>A field with accessType outputOnly cannot be initialized or included in a scene file, but can send output event values via a ROUTE.</xs:appinfo> </xs:annotation> </xs:enumeration> <xs:enumeration value="inputOutput"> <xs:annotation> <xs:appinfo>A field with accessType inputOutput can be initialized, and can also send or receive events.</xs:appinfo> </xs:annotation> </xs:enumeration> </xs:restriction> </xs:simpleType> |