Interface ITopicUpdate
An interface that provides the information to update for a specific topic ID.
Namespace: Unity.Cloud.Annotation
Syntax
public interface ITopicUpdate
Properties
Description
Returns the description of the updated topic.
Declaration
string Description { get; }
Property Value
| Type | Description |
|---|---|
| String | The description of the updated topic. |
Id
Returns the ID of the updated topic.
Declaration
Guid Id { get; }
Property Value
| Type | Description |
|---|---|
| Guid | The ID of the updated topic. |
InstanceId
Returns the instance ID of the object the updated topic is associated with.
Declaration
string InstanceId { get; }
Property Value
| Type | Description |
|---|---|
| String | The instance ID of the object the updated topic is associated with. |
LocalCameraTransform
Returns the local transform of the camera that looks at the updated topic.
Declaration
AnnotationTransform LocalCameraTransform { get; }
Property Value
| Type | Description |
|---|---|
| AnnotationTransform | The local transform of the camera that looks at the updated topic. |
LocalTransform
Returns the local transform of the updated topic relative to the associated object.
Declaration
AnnotationTransform LocalTransform { get; }
Property Value
| Type | Description |
|---|---|
| AnnotationTransform | The local transform of the updated topic relative to the associated object. |
MarkAsRead
Returns whether to mark the updated topic as read.
Declaration
bool MarkAsRead { get; }
Property Value
| Type | Description |
|---|---|
| Boolean | Whether to mark the updated topic as read. |
Remarks
If true, the updated topic is marked as read. If false, the updated topic isn't marked.
State
Returns the state of the updated topic.
Declaration
TopicState State { get; }
Property Value
| Type | Description |
|---|---|
| TopicState | The state of the updated topic. |
Title
Returns the title of the updated topic.
Declaration
string Title { get; }
Property Value
| Type | Description |
|---|---|
| String | The title of the updated topic. |
WorldCameraTransform
Returns the world transform of the camera that looks at the updated topic.
Declaration
AnnotationTransform WorldCameraTransform { get; }
Property Value
| Type | Description |
|---|---|
| AnnotationTransform | The world transform of the camera that looks at the updated topic. |
WorldTransform
Returns the world transform of the updated topic.
Declaration
AnnotationTransform WorldTransform { get; }
Property Value
| Type | Description |
|---|---|
| AnnotationTransform | The world transform of the updated topic. |