Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //Darkhitori v1.0
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- using Invector.CharacterController;
- namespace HutongGames.PlayMaker.Actions
- {
- [ActionCategory("Invector/vThirdPersonMotor")]
- [Tooltip(" ")]
- public class vTPM_ControlSpeed : FsmStateAction
- {
- [RequiredField]
- [CheckForComponent(typeof(vThirdPersonMotor))]
- public FsmOwnerDefault gameObject;
- public FsmFloat velocity;
- public FsmBool everyFrame;
- vThirdPersonMotor theScript;
- public override void Reset()
- {
- gameObject = null;
- velocity = null;
- everyFrame = true;
- }
- public override void OnEnter()
- {
- var go = Fsm.GetOwnerDefaultTarget(gameObject);
- theScript = go.GetComponent<vThirdPersonMotor>();
- if (!everyFrame.Value)
- {
- DoTheMagic();
- Finish();
- }
- }
- public override void OnUpdate()
- {
- if (everyFrame.Value)
- {
- DoTheMagic();
- }
- }
- void DoTheMagic()
- {
- var go = Fsm.GetOwnerDefaultTarget(gameObject);
- if (go == null)
- {
- return;
- }
- theScript.ControlSpeed(velocity.Value);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment