-
Introducing Leadwerks IDE
Streams and Events - Started by Josh,
You can get klepto2's Scintilla implementation here: https://github.com/klepto2/UltraEngineUtilities
3-29-25.zip
-
equilibrium 2014 06 05 03 33 30
Work in Progress - Started by Einlander,
A short demo game i'm making for the steam workshop. Everything you see on screen can be found in the workshop, except for the arms, gun and the monster. Those can be found inside the editor. -
-
-
-
One More Day - DevLog (Part 2)
Work in Progress - Started by xtom,
This video shows more work done on the inventory system. One More Day is a survival horror game in the making. The game is being made in the Leadwerks game engine http://www.leadwerks.com/ -
Per-bone Animation
Work in Progress - Started by Josh,
First pass at per-bone animations, combining upper body and lower body actions.
This is all it takes to control this animation:
//Load a model auto model = LoadModel(world, "Models2/merc/merc.mdl"); auto bone = model->skeleton->FindBone("spine_01_Military_Male"); //Main loop while (window->Closed() == false and window->KeyDown(KEY_ESCAPE) == false) { if (window->KeyDown(KEY_UP)) { model->Animate("walk", 0.4); } else { model->Animate("idle", 0.4); } if (window->KeyHit(KEY_SPACE)) model->Animate("shoot", 0.25, 100, ANIMATION_ONCE, 0, bone); world->Update(); world->Render(framebuffer); }
-
-
We have finally made it
Work in Progress - Started by Slastraf,
See utube desc for more.
This runs at 60 fps. Its a perlin noise based world generator in c++.
-
-
Tractor model with trailer attached, offroad demo
Work in Progress - Started by Marcousik,
Testing the trailer feature for Offraod game project,
Made with the game engine Leadwerks 4.6,
Credits Models (Many thx for authors) :
- "Tractor - Farmer's Best Friend" (https://skfb.ly/6RPNK) by 3dsofsan is licensed under Creative Commons Attribution (http://creativecommons.org/licenses/b...).
- "Car Trailer "the Chariot" (free download)" (https://skfb.ly/on8DR) by KrStolorz is licensed under Creative Commons Attribution (http://creativecommons.org/licenses/b...).
Enjoy watching!
-
SSLR
Work in Progress - Started by Steam Community,
Just messing around with some real-time reflections from Igor: http://steamcommunity.com/sharedfiles/filedetails/?id=414422238