CesiumLanguageWriter.PacketCesiumWriter.WritePositionPropertyReference C# (CSharp) Method

WritePositionPropertyReference() public method

Writes a value for the position property as a reference value. The position property specifies the position of the object in the world. The position has no direct visual representation, but it is used to locate billboards, labels, and other graphical items attached to the object.
public WritePositionPropertyReference ( string identifier, string propertyName ) : void
identifier string The identifier of the object which contains the referenced property.
propertyName string The property on the referenced object.
return void
        public void WritePositionPropertyReference(string identifier, string propertyName)
        {
            using (var writer = OpenPositionProperty())
            {
                writer.WriteReference(identifier, propertyName);
            }
        }

Same methods

PacketCesiumWriter::WritePositionPropertyReference ( Reference value ) : void
PacketCesiumWriter::WritePositionPropertyReference ( string value ) : void