i made a class and inherit TVActor class
public class cUnit : TVActor
{
}
but when i need to declare an actor in any other class it does not work
public class LoadUnit
{
cUnit actor = new cUnit();
actor.LoadTVA(datasource);
}
doesnot work because i need to write
actor = scene.CreateActor("")
and when i wrote the line above .... it says that can not convert type MTV3D.TVActor to cUnit
any idea ...
