Jump to content
  • entries
    940
  • comments
    5,894
  • views
    863,941

Beta branch update: Tons of art pipeline enhancements


Josh

4,617 views

 Share

I'm happy to say I nailed the design of the Leadwerks 3 workflow overall, but there are a couple of places where there's still some friction. Because the community is going to soon be moving a lot of content into the Steam Workshop, now is a good time to take a look at those issues. It's also smart to address them before the Blender exporter is written.

 

A new update has been pushed out to the beta branch on Steam that contains a lot of improvements in this area. However, both the map and model file format version have been incremented to support new features. That means your work saved in the beta build can only be opened by the newer builds, until a full update goes out.

 

FBX Material Generation

When FBX files are imported, their material files will now be automatically generated, if they aren't already present. A shader will be chosen based on what textures are present in the file, and it will even detect animated models and assign an animation shader when appropriate. This makes it dead simple to get models into Leadwerks.

 

Collision Shapes in Models

This came up because I found that 95% of the models I import are just static props that need a simple compound collision shape. First I tried using a convex decomposition algorithm in HACD, the same library Bullet Physics uses. This is a pretty impressive bit of code that takes a polygonal mesh and turns it into an approximate series of convex pieces:

blogentry-1-0-09922300-1398881874_thumb.jpg

 

However, trying to generate low-poly physics geometry from a visual mesh had unpredictable results. Trying to generate a convex decomposition from a concave hand-modeled mesh was even worse; you had the tedium of hand-modeling the physics shape, combined with the unpredictability of an automated algorithm.

 

So I abandoned that approach and decided to make something as simple as possible, that would handle most of the cases the average user encounters. You can now add solid convex pieces in your models, and as long as the name of the limb is "collision" it will get loaded as part of a default physics shape. The existing system of physics shapes remains unchanged, and all your existing objects will still work just as before.

blogentry-1-0-42588500-1398978759_thumb.jpg

 

Multi-Animation FBX Files

Leadwerks will now load multiple animations from FBX files, and will use the name of the animation sequence found in the files. Oh, by the way we now support...

 

Named Animations

Animations can now have a name assigned to them, and the animation commands now include an overload to specify a sequence name like "Run", "Walk", "Idle", etc. This makes it easy to mix and match character models because you don't have to worry about which animation index you want to use.

 

This video shows how these great new features work:

 

But wait, there's more!

 

Script-based Post Effects

We've also got script-based post effects in the editor! This allows a wider range of effects than pure shader effects did. You can modify the script in real-time and see the results immediately, although it is possible to crash the editor if you aren't careful:

 

A samples bloom script effect is included that is a combination of mine and Shadmar's code. It is interesting that the real-time shader visualization of Leadwerks 3 has allowed us to create a much higher-quality bloom effect than what Leadwerks 2 could do. This is because I could quickly modify code, press F5, and see the results right away instead of having to restart the editor just to change a shader.

 

blogentry-1-0-12003600-1399154555_thumb.jpg

 

Workshop files can now be selected in the file open dialog, so I expect to see lots of great new effects come from the community soon, especially from Shadmar and Klepto2. biggrin.png

 

Batch Material Generation

You just imported a folder full of textures and you don't want to create materials one-by-one. What do you do? The new Tools > Batch Generate Materials menu is the right solution for you! This feature will auto-generate materials for the entire current directory shown in the asset browser. And if you want some quick normal maps, just select the Tools > Batch Generate Normal Maps menu item. This will allow you to quickly import tons of textures and publish them to the Leadwerks Workshop in no time at all.

  • Upvote 16
 Share

10 Comments


Recommended Comments

On the new collision detection. If you build your simple shapes or if you model is simple enough just duplicate that shape (object) including them in the model file and the shapes are named "Collision", they will become the collision object upon importing the FBX model. Correct?

 

Lots of good stuff coming down the pipeline for Leadwerks, Thanks for the hard work you are doing.

Link to comment

one extra thing-- in Blender I can't name my shapes all collision(maybe I am missing a feature where objects can share names) sooo I worked around it by naming five different objects the following: Collision,collision,COllision,etc. capitalizing different letters allowed the objects all to have the name collision in Blender and made the feature work for me.

Just thought I'd add this in case anybody is having that issue.

  • Upvote 1
Link to comment

Great update, post effects are working in the editor aswell, some minor stuff still, but I should have a load of new stuff up very soon.

Link to comment

Josh could you please search for "Collision" with optional ".####" (# being a number ) that way it will work in blender aswell ;)

Link to comment

Ah, glad I did this now. I knew something like that would come up. Not a problem to fix that.

Link to comment
Guest
Add a comment...

×   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.

×
×
  • Create New...