i have a problen to convert the custom scene node tutorial from c++ to vb .net because the ISceneNode class (in .net) has no or a private construktor so it is not possible in vb .net to inherit this class without any constructor.
sample code:
Code: Select all
Class CSampleSceneNode
Inherits Scene.ISceneNode
'// Konstructor
Sub New() '// must create because ISceneNode has no one
MyBase.new() '// must call the ISceneNode construtor
'// it generates an error because ISceneNode has ´
'// no constructor
End Sub
End Class
THX forward