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 ( string value ) : void
value string The earliest date of the interval.
return void
        public void WriteOrientationPropertyReference(string value)
        {
            using (var writer = OpenOrientationProperty())
            {
                writer.WriteReference(value);
            }
        }

Same methods

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