Darkhitori

v_AISphereSensor/GetTargetTransform

Jan 13th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.25 KB | None | 0 0
  1. //Darkhitori v1.0
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using UnityEngine;
  5. using Invector;
  6.  
  7. namespace HutongGames.PlayMaker.Actions
  8. {
  9.     [ActionCategory("Invector/v_AISphereSensor")]
  10.     [Tooltip(" ")]
  11.     public class vAISS_GetTargetTransform : FsmStateAction
  12.     {
  13.         [RequiredField]
  14.         [CheckForComponent(typeof(v_AISphereSensor))]
  15.         public FsmOwnerDefault gameObject;
  16.        
  17.         [ActionSection("Return")]
  18.         [UIHint(UIHint.Variable)]
  19.         [ObjectType(typeof(Transform))]
  20.         public FsmObject targetTransform;
  21.        
  22.         public FsmBool everyFrame;
  23.  
  24.         v_AISphereSensor theScript;
  25.  
  26.  
  27.         public override void Reset()
  28.         {
  29.             gameObject = null;
  30.             targetTransform = null;
  31.             everyFrame = true;
  32.         }
  33.        
  34.         public override void OnEnter()
  35.         {
  36.             var go = Fsm.GetOwnerDefaultTarget(gameObject);
  37.  
  38.             theScript = go.GetComponent<v_AISphereSensor>();
  39.  
  40.  
  41.             if (!everyFrame.Value)
  42.             {
  43.                 DoTheMagic();
  44.                 Finish();
  45.             }
  46.  
  47.         }
  48.  
  49.         public override void OnUpdate()
  50.         {
  51.             if (everyFrame.Value)
  52.             {
  53.                 DoTheMagic();
  54.             }
  55.         }
  56.  
  57.         void DoTheMagic()
  58.         {
  59.             var go = Fsm.GetOwnerDefaultTarget(gameObject);
  60.             if (go == null)
  61.             {
  62.                 return;
  63.             }
  64.            
  65.             targetTransform.Value = theScript.GetTargetTransform();            
  66.         }
  67.  
  68.     }
  69. }
Advertisement
Add Comment
Please, Sign In to add comment