Files
project1_Space4x/Assets/Galaxy/Galaxy.cs
2023-06-05 15:34:37 +02:00

23 lines
501 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class Galaxy : MonoBehaviour
{
[SerializeField] private RawImage _img;
[SerializeField] private float _x, _y;
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
_img.uvRect = new Rect(_img.uvRect.position + new Vector2(_x, _y) * Time.deltaTime, _img.uvRect.size);
}
}