Hi
I cant see simple print or debug on the console
using UnityEngine;
using System.Collections;
public class Learningscript : MonoBehaviour {
public int health;
void start()
{
Debug.Log("xxxxxxxxxxxxx: " + health);
print("hi !");
}
void update()
{
}
}
- Script is attached to object
- Collaps is off, show warrnings and infos and everything is on in the console buttons
- no errors about the script, erroes dose work.
Why I cant see the log printings ?