I tried to post this in Questions but the tag thing kept going wrong so I appologise if It double posted…
I have this layout below…
The function Update does call Do_something_in_gen ok but the pronlem is that this function does not show up in the drop down list that appears when you start typing its name. Also When I move the Class Gen into a csharp file of it’s own MonoDevelop now complains the type or namespace can’t be found. Unity compiles the scripts fine, it’s just monodevelop highlights the line red and complains. Any ideas Guys?
public class Gen: MonoBehaviour
{
public void Do_something_in_gen()
{
}
}
public class Big: Gen
{
void Update()
{
Do_something_in_gen();
}
}