mirror of
https://github.com/Steffo99/keep-everything-alive.git
synced 2024-11-23 01:44:18 +00:00
15 lines
330 B
C#
15 lines
330 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class RainbowIfRainbow : MonoBehaviour
|
|
{
|
|
public SpriteRenderer planeObject;
|
|
public Sprite rainbowPlane;
|
|
|
|
void Start() {
|
|
if(planeObject.sprite != rainbowPlane) {
|
|
gameObject.SetActive(false);
|
|
}
|
|
}
|
|
}
|