harfang3d/release-notes.md
2021-12-15 20:23:12 +01:00

5.2 KiB

[3.1.0] - 2021-12-13

This minor release brings several improvements and fixes, mainly in the Bullet Physics API.

Engine

  • Added new HLS colorspace functions.
  • Improved CreateInstanceFromFile/CreateInstanceFromAssets by returning a boolean to inform the caller that the hosted scene could be instantiated.
  • Fixed various bindings (CreateInstanceFromFile, CreateInstanceFromAssets, GetColorTexture, GetDepthTexture, GetTextures)
  • Added a function to center a window (GLFW).
  • Added the support for Windows refresh callback (GLFW).
  • Bind read back and blit destination texture flags.
  • Simplify the frame buffer API store less content in Harfang objects.
  • Added fog to render data.
  • Validate AAA forward pipeline and associated post processes.
  • Fixed an issue where setting up the imgui font destroyed the cursors.
  • Added time_from_xxx_d functions and fixed a precision issue with time_from_string

Physics

  • Fixed the initial transform setup code of Bullet rigid bodies.
  • Changed the sync kinematic and dynamic mechanisme.
  • Added ResetWorld, DisableDeactivation, add a way to lock axes.
  • Added a getter/setter for rolling friction.
  • Added a raycast functions to return all collisions found between two points.
  • Fixed a raycast issue with geometry hierarchy.
  • Added the support for multi collision shapes with matrices

Toolchain

  • Assetc cleanup error messages, do not output unless truly reporting on an error.
  • Assetc will now delete the outputs for deleted inputs. A flag was added to opt-out from this mechanism (-no_clean_removed_inputs).
  • Assetc will now delete the previous compiled lua scripts if a compilation error arises.
  • Assimp importer: fixed a mention to the wrong converter.
  • Assimp importer: added a -merge-mesh option.
  • Assimp importer: updated to Assimp v5.1.2.
  • GLTF importer: fixed the import in case of many instances.
  • Fixed the toolchain integrity check.

Documentation

  • Documentation improvements and cleanup.
  • Fixed a typo in GetTextures documentation filename.
  • Fixed the reference to SceneBullet3Physics in the man Physics page.
  • Added a man.Requirements page.
  • Improved the Pypi wheel description ('Quickstart' was lacking a download URL).

Misc

  • Updated the license.
  • Fixed some cppcheck issues.

[3.0.0] - 2021-10-12

This major release mainly replaces Newton Dynamics with Bullet Dynamics for physics and improves interoperability between supported languages.

Engine

  • Add diffuse and specular intensity to lights.
  • Performance and filtering improvements of the AAA rendering pipeline.
  • Replace Newton Dynamics with Bullet 3 Dynamics, SceneBullet3Physics uses the same API as SceneNewtonPhysics.
  • Add SceneBullet3Physics.NodeWake to wake a sleeping body.
  • Implement restitution and friction in rigid bodies.
  • Provide support for value transfer between Lua VMs when calling Get/Set/Call on SceneLuaVM.
  • Implement full value transfer between Python and Lua VMs.
  • Implement Call on SceneLuaVM.
  • Light default specular value is now (1.0, 1.0, 1.0).
  • Support for specular color in core light models (point, spot, linear) in the PBR shader. This is not compliant with a strict definition of a PBR Pipeline, but this approach tends to be a consensus in the industry (Blender, Redshift, ...) and is artist-friendly.
  • Add Joystick support (Joystick, JoystickState, ReadJoystick, GetJoystickNames, GetJoystickDeviceNames).
  • Improve OpenAsset and LoadResourceMeta performance.
  • Improve Vertices.End performance by removing systematic default validation.
  • Rename x_aspect_ratio parameter to fov_axis_is_horizontal in SceneSubmitToForwardRenderPipeline.
  • SetView2D and SetViewPerspective now takes x,y,w,h instead of w,h.
  • Fix redundant loads of texture meta JSON when loading materials.
  • Fix ImGui Enter/Return key distinction.
  • Fix broken linear texture filtering.
  • Fix GLFW window system not sending window signals and breaking IsWindowOpen as a consequence.
  • Fix spurious error message when opening asset with several asset folders registered.

Toolchain

  • New AssImp converter.
  • GLTF Importer: Add occlusion texture if no metal/roughness texture is declared in a source material.
  • FBX, GLTF importer: Fix on the importation of animations in some specific rotations situations.

Documentation

  • Quickstart page improvements.
  • Index class members in the search index.

Misc

  • Update STB Truetype.
  • Update STB Vorbis.
  • Update STB Image.
  • Update STB Image Write.
  • Update bgfx.
  • Update bimg.
  • Update tiny process.

[2.0.111] - 2021-06-21

This release is a rewrite of the Harfang API toward a data-oriented approach. As a developer, you will find that many of the old classes are now gone and replaced by function calls that you string together in order to implement complex functionalities. The improved API provides greater flexibility and delivers higher performance than the Harfang 1.x API. Of major interest in this first release of Harfang 2.x are the new resource/asset pipeline (see Resources & Assets) as well as the new AAA renderer beta enabling screen-space global illumation with correct approximation of both the radiance and irradiance terms of the PBR equation.

NOTE:

The AAA rendering pipeline is currently a WORK IN PROGRESS and has important issues to address.