Advertisement
Atomic_Violetta

Moving Instance

Apr 1st, 2024
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 4.30 KB | Gaming | 0 0
  1. // Valkyrie Script - Gauntlet
  2. // name
  3.  
  4. using UnityEngine;
  5.  
  6. public class ValkyrieScript : MonoBehaviour
  7. {
  8.     // Sprite Renderer
  9.     private SpriteRenderer memberSpriteRenderer = null; // I don't know
  10.  
  11.     // I STILL don't know. Rigid Body.
  12.     private Rigidbody2D memberRigidBody = null;
  13.  
  14.     // Set my Speed. If There is no speed, you can't move.
  15.     [SerializeField] private float memberSpeed = 3.0f;
  16.  
  17.     // The prefab is a serialized field.
  18.     [SerializeField] private GameObject memberSwordbeamPrefab = null;
  19.  
  20.     // This is my Swordbeam Cooldown.
  21.     [SerializeField] private float memberCooldownDuration = 0.0f;
  22.     private float memberCooldownTimer = 0.0f;
  23.  
  24.     // Box Collider?
  25.     [SerializeField] private GameObject memberBoxCollider2D;
  26.  
  27.     // Start is called before the first frame update
  28.     void Start()
  29.     {
  30.         // Get the rigid body that we added in Unity.
  31.         memberRigidBody = this.GetComponent<Rigidbody2D>();
  32.  
  33.         // Get the sprite renderer from Unity.
  34.         memberSpriteRenderer = this.GetComponent<SpriteRenderer>();
  35.  
  36.     }
  37.  
  38.     // Update is called once per frame
  39.     void Update()
  40.     {
  41.         // Which direction does the player want to go?
  42.         // Assume the player doesn't want to move, so no direction.
  43.  
  44.         Vector3 localWhichDirection;
  45.         localWhichDirection = Vector3.one;
  46.  
  47.         // Get movement input
  48.         float horizontalInput = Input.GetAxis("Horizontal");
  49.         float verticalInput = Input.GetAxis("Vertical");
  50.  
  51.         // Calculate movement direction
  52.         Vector3 movementDirection = new Vector3(horizontalInput, verticalInput);
  53.  
  54.         // Apply movement
  55.         memberRigidBody.velocity = movementDirection * memberSpeed;
  56.  
  57.          // Vectors are variables that mean positions.
  58.         Vector3 localWhichPosition;
  59.  
  60.         // Valkyrie is in the middle.
  61.         localWhichPosition = Vector3.zero;
  62.  
  63.         // Cardinals
  64.         if (Input.GetKey(KeyCode.LeftArrow))
  65.         {
  66.             localWhichPosition = 2 * Vector3.left;
  67.             memberSpriteRenderer.flipX = true;
  68.  
  69.         }
  70.         else
  71.        if (Input.GetKey(KeyCode.RightArrow))
  72.         {
  73.             localWhichPosition = 2 * Vector3.right;
  74.             memberSpriteRenderer.flipX = false;
  75.         }
  76.  
  77.         if (Input.GetKey(KeyCode.UpArrow))
  78.         {
  79.             localWhichPosition = 2 * Vector3.up;
  80.             memberSpriteRenderer.flipY = true;
  81.  
  82.         }
  83.         else
  84.            if (Input.GetKey(KeyCode.DownArrow))
  85.         {
  86.             localWhichPosition = 2 * Vector3.down;
  87.             memberSpriteRenderer.flipY = false;
  88.         }
  89.  
  90.         // Diagonals
  91.         if (Input.GetKey(KeyCode.RightArrow))
  92.         {
  93.             // The player is pressing the right key
  94.             // so add right to the position so
  95.             // the hero moves to the right.
  96.  
  97.             localWhichPosition += 3 * Vector3.right;
  98.            
  99.         }
  100.  
  101.         if (Input.GetKey(KeyCode.UpArrow))
  102.         {
  103.             // The player is pressing the up key so add up to the position so the hero moves up.
  104.             localWhichPosition += 1 * Vector3.up;
  105.  
  106.         }
  107.  
  108.         if (Input.GetKey(KeyCode.LeftArrow))
  109.         {
  110.             // The player is pressing the left key so add up to the position so the hero moves left.
  111.             localWhichPosition  += 3 * Vector3.left;
  112.         }
  113.        
  114.         // Rotate sprite to simulate looking up or down
  115.         if (verticalInput > 0)
  116.             transform.rotation = Quaternion.Euler(0, 0, 90);
  117.         else if (verticalInput < 0)
  118.             transform.rotation = Quaternion.Euler(0, 0, -90);
  119.         if (horizontalInput < 0)
  120.             transform.rotation = Quaternion.Euler(0, 0, 0);
  121.         else if (horizontalInput > 0)
  122.             transform.rotation = Quaternion.Euler(0, 0, 0);
  123.  
  124.         if (Input.GetKey(KeyCode.DownArrow))
  125.         {
  126.             localWhichPosition += 1 * Vector3.down;
  127.         }
  128.  
  129.         if (Input.GetKeyDown(KeyCode.Space))
  130.         {
  131.             // Swordbeam Prefab
  132.             Vector3 localPosition = this.transform.position;;
  133.             Instantiate(memberSwordbeamPrefab, localPosition, Quaternion.identity);
  134.  
  135.             // Reset the cooldown timer.
  136.             memberCooldownTimer = memberCooldownDuration;
  137.         }
  138.  
  139.     }
  140. }
  141.     /* This completes a script. */
  142.  
  143.  
  144.  
Tags: instance
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement