Click or drag to resize

ASLObjectSendAndSetLocalRotation Method

Sends and sets the local rotation for this object for all users

Namespace:  ASL
Assembly:  Assembly-CSharp (in Assembly-CSharp.dll) Version: 0.0.0.0
Syntax
public void SendAndSetLocalRotation(
	Quaternion? _localRotation,
	GameLiftManagerOpFunctionCallback callback = null
)

Parameters

_localRotation
Type: SystemNullableQuaternion
The new local rotation for this object.
callback (Optional)
Type: ASLGameLiftManagerOpFunctionCallback
The optional callback function for OpFunction
Examples
void SomeFunction()
{
    //Claim the object first
    gameobject.GetComponent<ASL.ASLObject>().SendAndSetClaim(() =>
    {
        //Send and then set (=) the local rotation. Note that the object does not to this rotation until
        //it receives the packet from the server, even though it is the  caller of this function.
        gameobject.GetComponent<ASL.ASLObject>().SendAndSetLocalRotation(new Quaternion(0, 80, 60, 1));
    });
}
See Also