Hi I’m a newbie here on Unity3D i just want to ask a little help from you guys. so my question is how to translate or convert this C# script to JS… here’s the my codes…
using UnityEngine;
using System.Collections;
public class ScoreController : MonoBehaviour {
public static int scoreCount = 0;
void OnGUI()
{
string scoreText = "Total Score: " + scoreCount;
GUI.Box (new Rect(Screen.width - 150, 20, 130, 20), scoreText);
}
}
hoping you guys can help me with this. Thanks and GodBlessUs!