8 lines
202 B
C#
8 lines
202 B
C#
using UnityEngine;
|
|
|
|
public class WaypointController : MonoBehaviour {
|
|
private void Start() {
|
|
var transparent = new Color(1, 1, 1, 0);
|
|
GetComponent<SpriteRenderer>().color = transparent;
|
|
}
|
|
} |