This is where we sould all be now as of Jan 31 2025:
Component.h
I appoligize that I didn't cover Actor properly, I hope you all just distracted me and not because of a feeble brain.
I will explain in full detail
Actor.h
Actor.cpp
MeshComponent.h
MeshComponent.cpp
ShaderComponent.h
ShaderComponent.cpp
MaterialComponent.h
MaterialComponent.cpp
TransformComponent.h
TransformComponent.cpp
You'll need to place #include
Topic 9:Systems
So far we have looked at Entities (Actors), and Components. Now let's look at the third part - Systems.
To start off with, let's look at collisions. In Unity and Unreal they call them colliders.
Let's start by creating a ColliderComponent.
This is the starting point of the of the collision system. First, define ColliderComponent.
This just holds the type of collision object you actor is using, sphere, AABB, and such. Here's the basic code
for the Component.
We will flesh these out in class. Be sure to show up.