Tools
There are 248 posts filed in Tools (this is page 24 of 25).
Libre Arts: Week recap — 10 December 2019
Rust GameDev: This Month in Rust GameDev #4 – November 2019
Libre Arts: Week recap — 3 December 2019
Libre Arts: Week recap — 27 November 2019
Rust GameDev: This Month in Rust GameDev #3 – October 2019
Rust GameDev: This Month in Rust GameDev #2 – September 2019
Welcome to the second issue of the Rust GameDev Workgroup’s
monthly newsletter.
Rust is a systems language pursuing the trifecta:
safety, concurrency, and speed.
These goals are well-aligned with game development.
We hope to build an inviting ecosystem for anyone wishing
to use Rust in their development process!
Want to get involved? Join the Rust GameDev working group!
Game Updates
Veloren

Veloren is an open-world, open-source multiplayer voxel RPG.
The game is in an early stage of development, but is playable.
Some of the September’s improvements:
- Improved multi-staged towns generation;
- Improved inventory system and character creation;
- Massive progress on water, water physics, lakes, and rivers!
- New chunks data structure;
- Three-dimensional map and minimap;
- First-person view;
- Bows and arrows;
- Performance optimization;
New video: “24 Minutes of Alpha Gameplay”.
Full weekly devlogs “This Week In Veloren…”:
#31,
#32,
#33,
#34,
#35.
Zemeroth v0.6

Zemeroth is a minimalistic 2D turn-based tactical game.
This month Zemeroth v0.6 was released.
Main features of this release are:
- renown and fighter upgrades,
- possessions,
- sprite frames and flips,
- status effect icons.
Read the full devlog post or watch the video version.
Twenty Asteroids
@VladZhukov0 published a few devlogs about their
“Twenty Asteroids” game:
Updates include:
- New enemies: a ship with a big pinball-like bullet and a laser-mesh ship;
- New upgrades: laser range and bullets reflection;
- Explosion size now depends on asteroid’s size;
- Improved main menu, upgrade and death screens;
- Better color contrast;
- New AI behaviors: follow and circle around;
- Debugging performance plots;
Amethyst Games
-
Space Shooter v0.1.3
by @carlosupina introduced a currency system, shop system,
and sound effects: watch the devlog video. -

-
@mvlabat is working on interpolation in his multiplayer prototype (video).
-
Azriel Hoh released a major new devblog update titled “Focus!”.

-
@webshinra made progress with raycasted FOV
in their hexagonal game.
Other Game News
-
@dooskington published their 5th devlog: “Stats And Skills”;

-
Alex Butler continues to polish their “Robo Instructus” game;
1.8, 1.9, 1.10 and 1.11 versions were released:
official macOS support, bugfixes, and better translations.
-
@Wraithan got tower placement working
in their “WraithDefense” tower defence game;
the development process is streamed on Twitch.
-
@oliviff released v0.0.1 and v0.0.2 updates
for Tennis Academy:
simplified gameplay flow, areas, cash flow, animations,
players’ state visual cues and more.
-
The Garden game is
under active development again.
Devlogs are coming soon!
-
“Live” by @pincfloit – a small command-line interface survival game
[twitter,
github]. -
@MrVallentin tweeted a bunch of updates about their voxel engine:
falling cubes,
text rendering,
60M cubes generated in the blink of an eye,
remeshing,
retrospective video,
saving and loading,
and some more.
-
@Mistodon got their entire game “Disconnect” to render in the terminal;
Library & Tooling updates
gfx-rs & wgpu-rs: Project Update
gfx-rs is a Rust project aiming to make low-level GPU programming
portable with low overhead.
It’s a single Vulkan-like Rust API with multiple backends that implement it:
Direct3D 12/11, Metal, Vulkan, and even OpenGL.
wgpu-rs is a Rust project on top of gfx-rs that provides safety,
accessibility, and even stronger portability.
- gfx-rs was slimmed down: “magical” deps (like failure and derivative)
were removed and it sped up the fresh gfx-hal build by a factor of 8.5X;
the “typed” layer of gfx-hal got removed. - Backend features were removed from wgpu-rs;
- An entirely new swapchain model was prototyped and implemented.
Discussions:
/r/rust
Mun and Hot Reloading Experiments

Mun is a scripting language for gamedev
focused on quick iteration times that is written in Rust.
Mun’s pillars:
- Hot Reloading.
Mun natively supports hot reloading – the process of changing
code and resources while an app is running –
on all target platforms and consoles with marginal runtime overhead.
Its runtime has useful error messages,
and can easily be embedded into other languages. - Static Typing.
Mun’s type system eliminates an entire class of runtime errors
and provides powerful IDE integration with
auto-completion and refactoring tools allowing developers
to focus on writing code. - Performance.
Mun uses LLVM to compile to machine code that can be natively executed
on any target platform, guaranteeing the best possible runtime performance.
The driving force behind the development of Mun is natively supported
hot reloading for functions and data.
As such, the language and its syntax will keep growing at the rate
in which hot reloading-supported semantics is added.
Currently, the language looks like this:
fn main() {
let sum = add(a, b);
// Comments: Mun natively supports bool, float, and int
let is_true = true;
let var: float = 0.5;
}
// The order of function definitions doesn't matter
fn add(a: int, b: int): int {
a + b
}
The source code of the project
is available on GitHub
under the MIT or Apache licenses.
Mun’s runtime is implemented in Rust.
Check out a GIF demo of the Rust hot reloading functionality
that shows:
- Catching and logging of errors (e.g. type mismatch),
- hot reloading of a shared library’s symbols (used for reflection) and method logic,
- runtime invocable methods and type/method reflection.
Discussions:
/r/rust
Rust Roguelike Toolkit and Roguelike Tutorial

rltk_rs by @herberticus is a Rust implementation of
C++ Roguelike Toolkit (what is a “roguelike?”).
It provides all the basic functionality one needs to write a roguelike game,
as well as mouse support, an embedded resource system, Web Assembly support,
and more.
All examples are linked to browser WASM to try.
The back-end uses glow to abstract OpenGL between versions.
API for embedding assets directly into your binary.
If you’d like to see a functional roguelike that uses rltk_rs,
check out Rusty Roguelike.
The Roguelike Tutorial includes more than 20 chapters now
and continues to grow.
It covers topics from “hello rust” and “what is an ECS?” to adding monsters,
equipment, nice menus, save/load, multiple levels, bloodstains, particle effects,
magic mapping scrolls, and more.
The tutorial has Web Assembly links to all examples
so you can run them in your browser.
EmbarkStudios/texture-synthesis

Embark has open-sourced their texture synthesis crate texture-synthesis.
It’s an example-based non-parametric image generation algorithm
written in Rust.
The repo also includes multiple
code examples along with test images,
and a compiled binary with a command-line interface
can be found under the release tab.
Also, see a great long recorded talk
“More Like This, Please! Texture Synthesis and Remixing from a Single Example”
which explains this technique and the background more in-depth.
Full list of stuff that Embark has released so far:
embark.rs.
Discussions:
twitter
Also,
- Embark will be sponsoring RustFest in Barcelona this year.
- Embark started hiring new grads
[twitter].
Iced – a Renderer-Agnostic GUI Library
Iced is a renderer-agnostic GUI library focused on simplicity and type-safety.
It was originally born as an attempt at bringing the simplicity of Elm
and The Elm Architecture into Coffee 2D game engine.
Features:
- Simple, easy-to-use, renderer-agnostic API;
- Responsive, flexbox-based layouting;
- Type-safe, reactive programming model;
- Lots of built-in widgets and custom widget support.
Check out the design overview in the repo’s README.
Discussions:
/r/rust
Amethyst

Amethyst is a game engine and tool-set
for ambitious game developers.
It enables game developers to make complex games without getting
into too much trouble, by means of data-driven design
and the ECS architecture.
Tooling:
-
Amethyst Engine v0.13 was released.
A newamethyst_tilescrate was added and
the Pong tutorial
is now complete with the addition of an audio section. -
@_AndreaCatania published
an “Initialize physics world – Amethyst physics tutorial #1”
video. -
amethyst-imgui v0.5 is out,
supporting a beta-version of the new imgui docking feature.
-
“How to do a turn-based game with the ECS pattern”
post, by @webshinra. -
@valkum is
implementing area lights using linearly transformed cosines.
Godot and Rust

Tom Leys is working on a “The Recall Singularity” game
about designing autonomous factory ships and stations
and this month they published a few posts
about using the Godot engine with Rust:
- “How I use Rust and Godot to Explore Space”
[/r/godot]; - “Gorgeous Godot games in Rust”
[/r/rust]; - “A Basic Godot-Rust Structure”;
Use Prebuilt Rooms with Rust Macros for More Interesting Procedural Dungeons

@whostolemyhat published the fourth part
of their tutorial series on procedural generation with Rust.
In this tutorial, the room generation is updated so it can pick from a selection
of pre-built room patterns as well as create the standard empty room.
Discussions:
/r/rust
Other Library & Tooling News
-
uset – an implementation of sets and maps
designed for small and medium number of stored elements
which change quickly – i.e. in a dynamically evolving scene in a video game. -
blend – a parser and runtime for Blender‘s .blend files
that can be used to read (almost) everything inside the file:
from mesh data, materials, cameras and animations to user preferences,
window locations and render settings
[/r/rust]. -
cubism-rs (Rust bindings for Live2D Cubism) got renderer support for Piston2D.

-
“Github Actions CI with Rust and SDL2” –
Alexandru Ene wrote a post about CI with github actions
for their hobby game project that uses Rust and SDL2.
-
@phaazon released luminance 0.33 that
brings geometry instancing support;
also, the third wiki chapter “Wavefront .obj loader”
was released.
-
phaazon/spline-editor – a simple spline editor
for the splines crate written using luminance.
-
@magistratic gave a talk on the Doom’s BSP rendering engine using their
Rust implementation as a demonstration at RevolverConf:
recording (in Norwegian) and a WASM demo available
here
(source code).
-
rx by @cloudhead is a modern pixel editor and animator;
this month, v0.2.0 was released, with new brush modes –
pixel perfect drawing, symmetry and multi-frame drawing –
a new GLFW backend and.gifoutput.
[/r/rust,
github]. -
Pixel art editor Xprite is now open source under GNU GPL
[/r/rust,
/r/rust_gamedev].
-
minimum by (@aclysma) is a game development framework that provides
basic tooling and a content authoring workflow;
this month, rendering of draggable shapes in the editor
and rotation/scaling were added
[YouTube demo].
-
The imgui-inspect macro-based property editor by @aclysma
is a by-product of the above-mentioned “minimum” project.
-
Project Deios decided to implement their core in Rust
and has been looking for a Rust graphics programmer:
/r/rust announcement.
Popular Workgroup Issues in Github
- #36 “Adoption of Rust over time in existing game codebases”
- #48 “Placement New”
- #49 “Branch prediction hints (i.e. Likely/Unlikely)”
- #51 “Using wasm-bindgen for games”
Meeting Minutes
See all meeting issues including full text notes
or join the next meeting.
Requests for Contribution
- winit:
- gfx-rs’s “contributor-friendly” issues;
- wgpu’s “help wanted” issues;
- luminance’s “low hanging fruit” issues;
- Request from Amethyst:
“The renderer-agnostic GUI library “Iced” by @hecrj looks so good.
If someone wants to make this work with Amethyst please get in touch with us!
(or just do it…)”.
Bonus
Just an interesting Rust gamedev link from the past. 🙂
Sandspiel is a falling sand game by @MaxBittker
built in late 2018 using Rust (via WASM), WebGL,
and some JS glueing things together.
Sandspiel is a pixel physics simulation sandbox where
you can paint with elements, conduct experiments and build your own world!Elements include Ice, Water, Sand, Lava, Fire, Oil, Plant, Fungus,
and many more!The goal was to produce an cellular automata environment that’s
interesting to play with and supports the sharing and forking
of fun creations with other players.
Ultimately, I want the platform to support editing and uploading
of your own elements via a programmable cellular automata API.
The history of the game and the development process are documented in a great
“Making Sandspiel” blog post.
The source code is available on GitHub.
The game’s community is still active: check
@sandspiel_feed feed of uploads.
Discussions:
/r/rust,
/r/programming,
hacker news
That’s all news for today, thanks for reading!
Want something mentioned in the next newsletter?
Send us a pull request.
Also, subscribe to @rust_gamedev on Twitter
or /r/rust_gamedev subreddit if you want to receive fresh news!
Libre Arts: The art of Philipp Urlich
Libre Arts: Week recap — 24 September 2019
Week highlights: Inkscape 1.0 beta released, GIMP is getting built-in Normal Map filter, Krita team brings more improvements and bugfixes, darktable team is wrapping up v3.0 development, new versions of OBS Studio and Shotcut.
Graphics
It’s been a few interesting weeks over at GIMP and GEGL.
First off, the master branch of GIMP can now optionally be built with Meson thanks to Félix Piédallu. There are more bugs to flesh out, but it basically works. For developers, this decreases local build times. Most users will probably be unaffected.
Ell continued his work on the out-of-canvas feature set, adding an option requested from users — making it possible to preserve canvas padding color instead of using the checkerboard when the Show All option is on. You can either set it on per-image basis or make it used by default.

Michael Natterer and Jehan continued working on plugins API. In particular, Michael started addressing a few 17 years old feature requests asking for a way to make plug-in settings be persistent across sessions and a Reset button. An existing patch for the former is yet to be pushed to the main development branch, the latter already works in the old Despeckle filter used as a testbed.
Another new feature added by Ell is changing compression type for tile swap. It looks puzzling and overly technical until you know what his intention is:
I have a long standing plan of automatically ramping up the compression when you’re running out of swap space, to buy you more time to save everything and regroup 🙂 Right now, this option is there mostly for experimenting/extra control.
Ell also contributed a new GEGL operation, Normal Map, currently sitting in the workshop, which means it’s not yet built by default. Basically it’s because he’s not done with it yet. Some features like filter type choice are still missing.

It’s hard to say if this will make it to GIMP 2.10.4 (if, like me, you build GIMP with workshop enabled, you don’t need to worry). We’ll see.
The Krita team recently released version 4.2.6 mostly with bugfixes (over 120 people participated in beta-testing). Two new features are: ‘New layer from visible’ command now available in layer’s right-click menu, and Angle is now used as the default renderer on Windows.
The master branch is seeing some good action too. Agata Cacko added a simple progress bar for saving KRA files to improve visual feedback. Thanks to Lynx3d, screen color picker can now pick from reference images too. Oh, and Boudewijn Rempt fixed a crapton of resource and memory leaks.
Wolthera continues hacking on SAI files support in a dedicated branch of Krita. Recently, she added some tests to validate correctness of loading the data, then added basic layer style support, basic masks support (more fixes to follow), implemented the Binary blending mode, fixed clipping groups to load correctly, and added support for reading/applying the DPI value.
Inkscape 1.0 beta is finally out! This has been years and years in the making, and it will hopefully soon be completed.

Some of the highlights of the upcoming release are:
- Optional coordinates origin in top left corner
- Canvas rotation and mirroring
- Better HiDPI display support
- Centerline tracing
- Tons of live path effects improvements
- Variable fonts support
MacOS users will also love native UI and signed/notarized .dmg files.
One of the interesting aspects of the beta release is the new multicolor icon theme and advanced theming options.

Basically, the theme is designed around several key colors that can be changed in the Preferences dialog (the red, the green, and the sky blue colors on the screenshot above).
Downloads are up at https://inkscape.org/release/1.0beta1/platforms/.
Photography
The darktable team seems to have started wrapping up writing new code. The next release, v3.0, is likely to be done around winter holidays time.
Aurélien Pierre finally merged tone equalizer, a darktable module he’s been working on for a good part of the year. The module is essentially another take at separating lightness into zones (blacks, shadows, midtones etc.) and adjusting them selectively.

The module has some on-canvas interaction seen on both screenshots: hover over a region that belongs to a zone, then scroll the mouse wheel up or down to adjust EV. Adjacent zone will be compensated for, and unrelated zones won’t be affected at all.
There’s slightly more advanced UI that displays zone and the histogram and allows “painting” right over the EQ curve to tweak it.

For a background information on this feature, there is probably no better source than a dedicated thread over at Pixls.us. (One more important change, filmic v3, is better left for the next weekly report).
Speaking of which, another new fun project is ART, or Another RawTherapee. It’s a friendly fork of the well known photography application, also announced at Pixls.us. Alberto Griggio started it to flesh out some ideas for the original project. He ended up sticking to his fork because of how far the changes went.

So far, Alberto seems more inclined to focus on local editing tools, in particular advanced masking tools, reusing darktable code/ideas where applicable (his tone equalizer is based on an earlier version of the darktable’s module), and streamlining the pipeline to his liking.
Source code is over at BitBucket.
Franco Comida merged the librtprocess integration code into the main development branch of Luminance HDR. If you want to know, how this affects tone mapping in terms of rendering quality, see his old/new previews from a thread on GitHub. The improvement is quite spectacular.
3D and VFX
Blender news are nicely packed in another Blender Live session by Pablo Vazquez:
As usual, more stuff from Pablo Dobarro:
Voxel Remesh update:
– Better topology generation. It produces the same level of detail using fewer vertices.
– Volume and detail preservation. It only updates the areas of the mesh that changed. The mesh smoothing problem is now fixed. #b3d pic.twitter.com/RghgBPfWyC— Pablo Dobarro (@pablodp606) September 20, 2019
And more:
Quadriflow now supports mesh symmetry. This drastically improves the performance and the quality of the results #b3d pic.twitter.com/05d93QUOBq
— Pablo Dobarro (@pablodp606) September 18, 2019
First appleseed 2.1.0 beta is released, featuring things like OSL shaders compilations on the fly, full support for Cryptomatte, and render checkpointing i.e. resuming multi-pass renders after they were interrupted.
Video
Hugh Bailey et al. finally made a much anticipated new release of OBS Studio, the free/libre video broadcasting and screencasting software. Some of the highlights:
- Ability to pause recording
- New option to automatically adjust bitrate instead of dropping frames
- Ability to select multiple sources on the preview
- Browser sources can now have their volume adjusted via the audio mixer
- Fixed hardware acceleration support for decoding media files
Get it from the project’s website.
More than that, Twitch joined NVIDIA and Logitech in sponsoring Hugh’s work on the project and committed to an unannounced annual donation that (it is safe to assume) surpasses 50 grand. The team will also have a booth (first time ever) at TwitchCon 2019 in San Diego.
Dan Dennedy released Shotcut v19.09.14 featuring multi-select for playlist and timeline, new default shortcuts, six new video filters, some other improvements, and a bunch of bugfixes. See the news post for more details.
Matt completed the transform effect in Olive, then went on setting up continuous integration including automatic builds for Windows, macOS, and Linux (AppImage). Hint: you can now grab Windows builds in the Artifacts section at Appveyor, but be warned that it’s alpha quality code. Great new features. But not ready for production yet. But so tempting… And yet… Oh well.
Alexandru Băluț created a merge request for Pitivi, that adds editing nested timelines — a new feature developed by project’s GSoC student Swayamjeet Swain over the summer. It looks like there’s some cleaning up to do before this can be merged.
Not a ton of things going on over at Cinelerra GG, but they recently removed a timebomb placed by Adam Williams over 10 years ago. It made Cinelerra unusable if the currently installed copy was too old (and thus there was a chance that any reportable bugs were already fixed in newer releases).
Meanwhile, Einar Rünkaru is single-handedly working on Cinelerra CVE. Most of the work is low-level under-the-hood stuff, although the keyframable Crop effect sounds end-userish enough to me.
Audio and music
Andrew Belt keeps expanding the ecosystem of VCV Rack. The modular synth now has a separate Chords module which is a quad-note chord sequencer, and you can now write new modules in JavaScript (support for more languages is coming).
Nils Hilbricht et al. announced initial schedule for this year’s Sonoj convention that is taking place on October 26-27 in Cologne, Germany. Some of the topics are JACK, Qtractor, Vital (a new synth), recording sample libraries from acoustic instruments etc.
Tutorials
New Krita timelapse from grafikwork:
New Blender tutorial by Nita Ravalj covers the topic of modeling fur:
Rositsa Zaharieva posted a new the-making-of timelapse for a painting she recently did with Krita.
Inkscape basics with Nick Saporito:
Artworks and showcases
The most impressive, hilarious and god knows what else showcase this past week was an attempt by Grant Wilk to create a microprocessor with Blender. Not model one, actually create one.
Here’s a peek at the memory system for my Blender microprocessor.
Each register dynamically maps a block onto a plane depending on the the address and width.
The image will then be rendered out on a frame update (clock tick), and read back in on the other end.#b3d #blender3d pic.twitter.com/5ziDGOFFS7
— Grant Wilk (@remi_creative) September 22, 2019
Some more information:
Ladies and gentlemen …
Tonight I cracked the code to storing memory using Blender’s node editor.
This means that I can continue engineering my node editor microprocessor that will eventually become a computer.
Stay tuned. Stay creative.🤓#b3d #blender3d pic.twitter.com/uQPel1QHJo
— Grant Wilk (@remi_creative) September 21, 2019
Or just follow Grant on Twitter, this is fun!
Atheris Hispida might indeed one of the inspirations for dragons as creatures, as suggested in a BlenderArtists thread for this Cycles render of one, made by

Lucas Falcao posted a few close-ups from his recent personal render that looks like taken out from a very cool animated movie. All done with Blender/Cycles.
Here some close up renders from the cat scene. #b3d #cycles #blackcat pic.twitter.com/VZwA9Stpkx
— Lucas Falcao (@lucasfalcao3d) September 18, 2019
Raghavendra Kamath posted another artwork made with Krita:

Marcelo Queiroz has been posting his renditions of DC superheroes on Inkscape‘s Facebook group for a while now, all work done with Inkscape and GIMP:

Libre Arts: Week recap — 10 September 2019
Week highlights: out-of-canvas pixels now possible in GIMP, Krita team goes on a bugfixing spree, lots of changes in upcoming Blender 2.81 and FreeCAD 0.19, GSoC project for OpenGL rendering in LibreCAD v3 now completed, more work-in-progress goodness in Olive.
Graphics
There’s more under-the-hood work on GIMP’s plugin system, but there have been user-visible changes too, and you are likely to love those. Ell contributed a new feature: showing all pixel data outside the canvas boundary. It comes with an optional canvas boundary display (red dotted line).
When enabled, the padding around canvas gets replaced with common alpha checkerboard, and all content outside the canvas is revealed.

Ell also made it possible to use several tools outside the canvas. For now, it’s painting and cloning tools. Adding support for selection tools will probably bring GIMP considerably close to a full-blown implementation of unbounded layers.
Alessandro Francesconi released another new version of BIMP, visual batch processing plug-in for GIMP. Two latest updates feature improved GUI flexibility and HiDPI support (contributed by one of Pencil2D developers), as well as support for WebP and HEIF.
Before HiDPI fix:

After HiDPI fix:

Dmitry Kazakov, Boudewijn Rempt, Wolthera, and Lynx3d fixed probably a dozen of memory leaks in Krita and twice as many general bugs here and there. There’s more progress by Wolthera in adding support for SAI files: fixes for layer blending modes, masks support.
Meanwhile, Kuntal Majumder continues working on his GSoC project, the Magnetic Lasso tool. Recently, he added an ability to cancel selection and start anew, as well as edit checkpoints. He then implemented basics of lazy filtering.
Some members of the GNOME team are now promoting Obfuscate, a new program created by Bilal Elmoussaoui, specifically designed to blur and redact sensitive information on screenshots and images, like in this case part of tabs in Chrome:

3D and VFX
Pablo delivered another great recap of recent changes in Blender, there’s not much need in repeating that, just watch the video 🙂
You are going to love this extra though:
I added a new set of properties to the paint brush to match most digital painting applications.
Brushes now have opacity, flow, density, hardness, wet paint, tip shape controls and tip rotation. #b3d pic.twitter.com/NfPehgkso8— Pablo Dobarro (@pablodp606) September 4, 2019
Or maybe this update on the eyedropper tool in Grease Pencil?
Check out a new photogrammetry add-on for Blender. There’s nice coverage over at Blendernation.
One more important topic here is free distribution of paid add-ons for Blender. This was an interesting conversation to watch:
The Wordpress ecosystem has had this controversy ages ago, Blender is comparatively late to the party, and yet it’s a conversation we needed to have.
CAD
LibreCAD’s only GSoC project, OpenGL rendering, is now complete. Kartik Kumar continues working with Florian Roméo and Armin Stebich on cleaning up the code. For details, see his final report.
Interesting things are going on with FreeCAD. There’s a newly introduced Points workbench by Jean-Marie Verdun, that provides tools for working with point clouds. The Check Geometry tool (verifies if you have a valid solid) got more settings.
More interesting things, courtesy by Victor Titiov, are going on with the Show module. Apparently, you can now have multiple temporary visualizations in arbitrary order and a plugin system. As the first tangible outcome, this helps allowing another workbench to do sketch editing.
The OpenSCAD workbench now supports extrusion with an angle, and the DraftFillet tools got a new option to change fillet to a chamfer, courtesy by vocx-fc. Finally, there’s a ton of updates in the FEM workbench by Bernd Hahnebach.
Video
I find it hard right now to report on Matt’s progress with Olive, because the master branch is pretty much unusable. So here is an unordered list of recent changes:
- OpenImageIO support (cheap access to OpenEXR, DPX, Cineon etc.)
- Lots of color management work done
- Functions for alpha dis/re/association
- Alpha over and opacity nodes are functional, transform (2D, 3D, and 4D) node is partially functional
- Node caching and render caching improvements
- New slider widget that can handle both integers and floats
- New playback controls
Really, I can’t wait to see all this in a usable state.
Jonathan Thomas continues doing good work with OpenShot. There hasn’t been a release since March yet. But most recently, the program got support for Blender 2.80. This is where I just have to quote Jonathan:
On a side note, I really love the new version of Blender. It is very inspiring, the entire Blender story leading up to this release. It will continue to be an inspiration for OpenShot and myself. 👍 Good job Blender devs!!!!!
Cinelerra-GG now uses libdav1d for AV1 support by default instead of libAOM, which is part of the most recent release. It also got a new crop plugin and timeline bars, which aren’t in any release yet.
GNOME Subtitles is seeing more activity lately again, both new releases, v1.5 and v1.6, have bugfixes and small enhancements rather than new features.
Tutorials
A good introduction to darktable, made for PetaPixel readers:
New photography postprocessing tutorial for GIMP users by Davies Media Design:
GDquest explains using file layer in Krita to make game art mockups:
And here is a timelapse showing how to make a low-poly eagle logo with Inkscape:
Artworks and showcases
I’ll never get tired posting new artworks by Philipp Urlich, made with Krita. This one is based on a Gaugan render that he did.

More speedpainting with Krita from Sylvia Ritter:

Urban environments by James O‘Brien, made with Blender, are always good solid stuff.

‘Puffin spotting on Cannon Beach’ is a short animated film by Zale, made with Blender and based on a Zoe Persico’s illustration.
New FreeCAD showcase is a gas turbine for a radio-controlled model aircraft, based on a 1992 design by Kurt Schreckling. It was designed with upcoming FreeCAD 0.19, although no assembly workbench was used as there was no need for it, or so the author claims.

Random things
The funniest thing made with Blender I’ve seen in a while:
あとちょっと調整する
Procedural Burger System #WIP
Blender 2.80 Eevee#proceduralmodeling #proceduraltexture #AnimationNodes #b3d #blender3d #blender pic.twitter.com/tWD6FNbWhO— sakura🌸 (@sakura_rtd) September 8, 2019
But procedural designs go even further:
I made a procedural solar panel texture. not perfect yet, but I’m getting there. The bevel at the edges however, is not procedural, this is just geometry. Whatcha think?#blender #blender3d #b3d #blendercycles #blendereevee #eevee #solarpowerrrrrrrrrftw pic.twitter.com/H9nZP4zOJg
— BluePixelAnimations (@BluePixel2017) September 9, 2019








