Added the camera class
Added the DDS Texture Loading for future use Added the gamepad class for future use Added first child method to the scenegraph Added RGB to intensity and lerp methods to the shared methods class Added the terrain node class with normals Fixed issue with submeshnode not passing the world transform to the actual meshes
This commit is contained in:
@ -6,9 +6,9 @@
|
||||
class SplitMeshNode : public SceneGraph
|
||||
{
|
||||
public:
|
||||
SplitMeshNode(wstring name, wstring modelName);
|
||||
SplitMeshNode(wstring name, wstring modelName) : SceneGraph(name) { _modelName = modelName; }
|
||||
bool Initialise(void);
|
||||
SceneGraphPointer AddMeshNode(shared_ptr<Node> node);
|
||||
SceneNodePointer AddMeshNode(shared_ptr<Node> node);
|
||||
|
||||
private:
|
||||
shared_ptr<SubMeshRenderer> _renderer;
|
||||
|
Reference in New Issue
Block a user