Content

Show Deprecated

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

Properties

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.

Parameters

uri: string

The asset URI string.

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.

Parameters

object: Object

The Object to reference.

Properties

An empty Content value with Content.SourceType of None.

The source type of the contained value. Indicates which property contains a non‑nil value.

A URI string if Content.SourceType is Uri, otherwise nil.

Object

A reference to a non-nil Object if Content.SourceType is Object, otherwise nil.