bool IsProxy { get; set; }

book_4_sparkGenerated
code_blocksInput

Description

The IsProxy property of the Component class indicates whether the component is part of a networked object that is owned by another client. If this property returns true, it means that the object is not under the control of the local client, and therefore, any attempts to manipulate or move the object should be avoided.

Usage

Use the IsProxy property to determine if a component is a proxy for a networked object owned by another client. This is particularly useful in multiplayer scenarios where you need to ensure that only the owning client can control the object.

Example

// Example of checking if a component is a proxy
Component myComponent = someGameObject.GetComponent<Component>();

if (myComponent.IsProxy)
{
    // This object is controlled by another client
    // Avoid making changes to its state
    return;
}

// Safe to manipulate the component as it is not a proxy
myComponent.Transform.Position += new Vector3(1, 0, 0);