OkashiKami
❔ Unity3D C-Sharp Create class instance from Type
so you know how on msdn they have
CreateInstance(String, String)
Creates an instance of the type whose name is specified, using the named assembly and parameterless constructor.
for some reason that one is not available to me61 replies
❔ Unity3D C-Sharp Create class instance from Type
and i expect when i rand the Activator.CI to return an object of the type that was provided but instead i get a null value when after inspecting the elements with breakpoints all is good but not that part
61 replies
❔ Unity3D C-Sharp Create class instance from Type
while stepping as soon as i get to the section that says Activator.createInstance it return null like i said not really sure i'm getting a
MissingMethodException: Constructor on type 'OkashiKami.Terragen.Modifiers.SmoothModifier' not found.
exception but all my classes have a default constructor in them so i really don't understand61 replies