Hi,
I'm wondering if it's possible to remove MonoBehavior from unity scripts? They extend MonoBehavior by default, but I have a script which I don't want it on. (I'm using js).
Hi,
I'm wondering if it's possible to remove MonoBehavior from unity scripts? They extend MonoBehavior by default, but I have a script which I don't want it on. (I'm using js).
You have to declare the class explicitly:
class MyClass
{
//code here
}