mirror of
https://github.com/NotAKidoS/NAK_CVR_Mods.git
synced 2025-09-02 22:39:22 +00:00
ChatBoxExtensions: Recompile
This commit is contained in:
parent
bef2440b23
commit
4ae78984af
4 changed files with 6 additions and 6 deletions
|
@ -14,7 +14,7 @@ internal class ChilloutVRAASCommands : CommandBase
|
|||
{
|
||||
if (args.Length > 2 && float.TryParse(args[2], out float value))
|
||||
{
|
||||
PlayerSetup.Instance.changeAnimatorParam(args[1], value);
|
||||
PlayerSetup.Instance.ChangeAnimatorParam(args[1], value);
|
||||
}
|
||||
});
|
||||
},
|
||||
|
@ -24,7 +24,7 @@ internal class ChilloutVRAASCommands : CommandBase
|
|||
{
|
||||
if (args.Length > 2 && float.TryParse(args[2], out float value))
|
||||
{
|
||||
PlayerSetup.Instance.changeAnimatorParam(args[1], value);
|
||||
PlayerSetup.Instance.ChangeAnimatorParam(args[1], value);
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
|
@ -108,7 +108,7 @@ internal class ChilloutVRBaseCommands : CommandBase
|
|||
{
|
||||
if (args.Length > 0)
|
||||
{
|
||||
string player = args[0y];
|
||||
string player = args[0];
|
||||
CVRPlayerEntity playerEnt = CVRPlayerManager.Instance.NetworkPlayers.FirstOrDefault(x => x.Username == player);
|
||||
if (playerEnt != null) BetterBetterCharacterController.Instance.TeleportPlayerTo(playerEnt.PuppetMaster.transform.position, false, false);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue