t3D - WIP 3D Engine
-
@SteveZX81 Are there specific games you're interested in? I can look to see if I've reviewed them!
I'd link straight to the review site, but that is a sub-site of my personal blog, and I like to keep my social commentary separate from my contributions here.
I've thought many times about breaking that site off, but I'm too lazy-- it would involve re-working my DynDNS stuff, having two DNS entries, etc. etc.
-
Yep, off the top of my head there is: (Bus Simulator, Truck Driver, Greedfall, Grid and Ghost Recon:Breakpoint on PS4) and (AC:Rebel Collection, Escapists 2, Bomber Crew, Pioneer Mars, Forager on Switch)
-
@SteveZX81 Oh man, this reminds me of just how vast this hobby is: I've reviewed 565 games, but none of the ones you listed!
I did review the previous "Ghost Recon" ("Wildlands"), but that's as close as I came. But you maybe just gave me some good ideas, since the fact that Fuze appeals to both of us probably indicates similar game taste! I may add some of your list to my "todo" list.
Here are my ten most recent reviews just to give you a flavor. If we have a way to "PM", I can just send you a link to the site so we can stop hijacking this thread!
- Shenmue III (Windows)
- Pokemon Shield (Switch)
- The Outer Worlds (UWP)
- Metro Exodus (Windows)
- Dragon Quest XI (Switch)
- STOS (Atari ST)
- Arkanoid (Atari ST)
- Fire Emblem: Three Houses (Switch)
- Kirby: Nightmare in Dream Land (Game Boy Advance)
- Dreams (PlayStation 4)
-
Sure, thanks!
-
@Jonboy, you have inspired me to build a level editor for the 3D Demo... realising i'd probably need this if I wanted to save any of the work put in!
Here is the progress..
-
Got stuck trying to work out using arrays vs structs, thanks to @pianofire for your help and answers!
-
Built an attempt at this in 3D, got stuck realising i'd need to think and plan out the logic before just writing the code
-
Re-wrote this in 2D, top down, realising I could then translate the X/Y concepts to X/Z - got it working with object creation and manipulation of position!
-
Re-wrote again in 3D .. Starting to feel it come to life!
My current challenge is toggling l/r should change the active model displayed before placed however currently only displays the last placed object.. Is anyone free to have a look at the code and share some suggestions?
-
-
-
This is amazing
-
So! I have learnt from this that to do a level editor with a preview you need two things:
- All the models loaded, all the objects associated to those models and then all models placed as objects
- Two instances of the placed objects, the preview object and then the placed array object
Seems the approach now is to change the preview object model as it increments through the model index... @Jonboy @Dave - Any suggested approachs on how to change an objects model ? I cant see an existing function like changeModel(current,next) so assuming i'll need some trickery?
-
I think you need to look at removeObject(handle) and then recreate with the next / previous object and using the same handle.
-
Awesome, thanks @Jonboy - I'll give that a try