UnityScripterAI
Discord ↗
Link Copied to Clipboard
×
"print life is useless"
/* This tool can only accept Unity commands, so here's how to print "life is useless" in Unity */ using UnityEngine; using System.Collections; public class PrintLifeIsUseless : MonoBehaviour { void Start() { Debug.Log("Life is useless"); } }