[TASK] Spawn collectable ducks on the map when in range

This commit is contained in:
2019-08-19 00:36:56 +02:00
parent 98219ecfef
commit 279c5fbbbe
2270 changed files with 6269477 additions and 182 deletions

View File

@@ -0,0 +1,30 @@
using UnityEngine;
using System.Collections;
namespace MagicArsenal
{
public class MagicRotation : MonoBehaviour
{
[Header("Rotate axises by degrees per second")]
public Vector3 rotateVector = Vector3.zero;
public enum spaceEnum { Local, World };
public spaceEnum rotateSpace;
// Use this for initialization
void Start()
{
}
// Update is called once per frame
void Update()
{
if (rotateSpace == spaceEnum.Local)
transform.Rotate(rotateVector * Time.deltaTime);
if (rotateSpace == spaceEnum.World)
transform.Rotate(rotateVector * Time.deltaTime, Space.World);
}
}
}