| 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
)
Public Sub SendAndSetLocalRotation (
_localRotation As Quaternion?,
Optional callback As GameLiftManagerOpFunctionCallback = Nothing
)
public:
void SendAndSetLocalRotation(
Nullable<Quaternion> _localRotation,
GameLiftManagerOpFunctionCallback^ callback = nullptr
)
member SendAndSetLocalRotation :
_localRotation : Nullable<Quaternion> *
?callback : GameLiftManagerOpFunctionCallback
(* Defaults:
let _callback = defaultArg callback null
*)
-> unit
Parameters
- _localRotation
- Type: SystemNullableQuaternion
The new local rotation for this object. - callback (Optional)
- Type: ASLGameLiftManagerOpFunctionCallback
The optional callback function for OpFunction
Examples void SomeFunction()
{
gameobject.GetComponent<ASL.ASLObject>().SendAndSetClaim(() =>
{
gameobject.GetComponent<ASL.ASLObject>().SendAndSetLocalRotation(new Quaternion(0, 80, 60, 1));
});
}
See Also