Jump to content

personal skate game project


hgn
 Share

Recommended Posts

since i finished my csgo map its back to making obscure indie games. its inspired by games i played as a kid, like tony hawks downhill jam and the larger sections of the skate series, but in first person.

this what the controls currently look like:

im gonna post some pictures of the world artwork here more when its done :)

Edited by hgn
name
Link to comment
Share on other sites

  • 3 weeks later...
  • 2 months later...

 2022-09-15-224730_1675x834_scrot.png.a64d4fa4211a05d8b377f6246062b653.png

some graffiti i did with a friend in Kingspray VR (and a cheeky Mapcore logo)

2022-09-15-233805_1121x657_scrot.png.10d256475d6e8895b4c6a51101c1364f.png

this week was redoing the animation and physics systems for this game, and in the process made a ragdoll editor thing in Blender where you can mess about with the joint limits and hitboxes...

theres a video of me testing it

more physics:

Spoiler

pretty happy with performance and simulation quality at this point. only a few shapes left to add

 

Edited by hgn
Link to comment
Share on other sites

  • hgn changed the title to Skate Rift solo game project
  • 2 weeks later...
16 hours ago, hgn said:

yeah the 'engine' i put together is really just a collection of header files like stb_.., glfw, miniaudio and a couple others. and then i just make the game manually using those

Awesome, that's a great way to go. I shipped my first console game that way :)

Sometimes things are easier without an engine.

Link to comment
Share on other sites

  • hgn changed the title to personal skate game project
Posted (edited)

i added some lights to the engine and im pretty happy with how it turned out. can run up to 1000 point/spot lights at once. the clusters (since its forward render) are on a big cube grid like this (showing complexity, maximum per cube is 6):

2023-03-04-021308_1920x1080_scrot.png.6e3fba78847af612e0478bebe611657c.png

and the result is

2023-03-04-021312_1920x1080_scrot.png.8f535e5781ca0cb92102703c27cfe4db.png

 

also wrote a new skybox shader which is dynamic :D

2023-03-02-015451_1920x1080_scrot.png.80c6616ab193bad7cdc74d1b45bfedd1.png

 

Edited by hgn
Link to comment
Share on other sites

it varies a lot these days, since theres are many different forward clustering methods. mine specifically does not effect draw calls:

renderdoc shows a few dozen drawelements on the left, to draw the world from one view (somewhere amongst them theres a switch between two vertex buffers).

my lights are stored as a global array per world in a texture buffer, and the spacial index is the 3d texture on input 4. the reason for the limit of 1000 lights is that those indices are 10 bits. the textures are calculated on the CPU because i'm not that high tech yet. so the result is that the pixel shader can look up by himself what lights it needs to shade with, which allows render big massive chunks of the world at once and not really have to worry about draw calls or culling far away lights

2023-03-10-094316_1920x1080_scrot.png.2db2ac044e027dd599df67fbfe890897.png

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
 Share

×
×
  • Create New...