Content
The Content data type represents a reference to asset content stored externally or as an object within the place, wrapping a single value of one of the supported Enum.ContentSourceType values.
Warning
Replication is not yet supported for Object values. When an Instance with a Content property containing a Object value is replicated, an unusable placeholder Object of the same type will be used instead of the Object itself, and any attempt to read or write the contents of that placeholder object will throw. These placeholder objects will render as a cyan and magenta checkerboard pattern.
This will be replaced with standard replication behavior in the future. For now, do not use EditableImage or EditableMesh as Content on the server on an Instance that can replicate to clients.
Summary
Constructors
Returns a new Content with an asset URI string value referencing content external to the place.
- fromObject(object : Object)
Returns a new Content with a strong reference to an Object.
Properties
An empty Content value with Content.SourceType of None.
The source type of the contained value.
A URI string if Content.SourceType is Uri, otherwise nil.
A reference to a non-nil Object if Content.SourceType is Object, otherwise nil.
Constructors
fromUri
Returns a new Content with an asset URI string value referencing content external to the place.
Content.SourceType will be Uri, and Content.Uri will contain a non‑nil string value.
If uri is empty, Content.none will be returned instead.
fromObject
Returns a new Content with a strong reference to an Object.
Content.SourceType will be Object, and Content.Object will contain a non‑nil Object reference.
Content.Object references are strong references that hold shared ownership of the Object. Any Content.Object reference will extend the lifetime of that Object and prevent it from being garbage collected.
Throws if object is nil.
Properties
SourceType
The source type of the contained value. Indicates which property contains a non‑nil value.