CesiumLanguageWriter.PacketCesiumWriter.WriteOrientationPropertyReference C# (CSharp) Method

WriteOrientationPropertyReference() public method

Writes a value for the orientation property as a reference value. The orientation property specifies the orientation of the object in the world. The orientation has no direct visual representation, but it is used to orient models, cones, pyramids, and other graphical items attached to the object.
public WriteOrientationPropertyReference ( Reference value ) : void
value Reference The reference.
return void
        public void WriteOrientationPropertyReference(Reference value)
        {
            using (var writer = OpenOrientationProperty())
            {
                writer.WriteReference(value);
            }
        }

Same methods

PacketCesiumWriter::WriteOrientationPropertyReference ( string value ) : void
PacketCesiumWriter::WriteOrientationPropertyReference ( string identifier, string propertyName ) : void