Saxum/object.cc

23 lines
566 B
C++

#include "object.hh"
Object::Object(Model model, Material material, glm::vec3 position, glm::vec3 rotation,
glm::vec3 velocity, glm::vec3 angularVelocity, Shader shader) :
Entity(position, rotation) {
this->model = model.getReference();
this->material = material;
this->velocity = velocity;
this->angularVelocity = angularVelocity;
this->shader = shader.getReference();
}
Object::Object() {
}
Object::~Object() {
}
void Object::render() {
shader->setTexture("uTexture", material.getReference(), 0);
model->render();
}