Skip to content

Commit

Permalink
Updated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
HaydenD100 committed Aug 1, 2024
1 parent a73da94 commit ccaea3a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Engine/Core/Scene/Scene.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ void Scene::Load() {

//MAX LIGHTS BY DEFAULT IS 10 if you want more lights go to FragmentShader.frag and VertexShader.vert and change MAXLIGHTS
{
Light light(glm::vec3(100, 100, -100), glm::vec3(1, 1, 1), 0);
Light light(glm::vec3(-2.5, 4, -5), glm::vec3(1, 0.25, 0), 30);
lights.push_back(light);
}
{
Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ https://github.com/HaydenD100/3dEngine2.0

## Changelog

### 3D Engine 2.0 2024/August/1
My main focus for the next couple weeks is going to be overhauling the lighting and rendering systems. The Engine now supports multiple lights that can be dynamically changed in the scene. I'm looking at other graphical improvements like SSAO or Rendering to a texture allowing post processing as well as working on a material system to make the textures feel more unique.
![screenshot](https://github.com/HaydenD100/3dEngine2.0/blob/Bullet3-physics/github/screenshots/lights.png)


### 3D Engine 2.0 2024/July/26
There is a new branch called bullet physics, this is the new current branch that use the Bullet Physics library. Over the last week I have ported my engine to use this physics library. This allowed me to add better rigidbodies as well as dynamic objects, shown in the screenshot below. There are now multiple Collider shapes including spheres/boxes/capsules and convex mesh's base on the model.

Expand Down
Binary file added github/screenshots/lights.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit ccaea3a

Please sign in to comment.