This page has been translated automatically.
Последние новости:
Содержание:

UNIGINE 2.1: New Sky, Increased Depth Precision, Improved AA, Optimizations, Bugfixes

Key Changes

  • Improved atmospheric light scattering: easy setup, more predictable visuals, better quality.
  • Increased depth buffer precision.
  • Rendering performance optimizations.
  • Improved antialiasing quality.
  • Introduced ObjectText.
  • Support for OS X El Capitan.
  • Support for a single licensing server instance per LAN with auto-discovery.
  • "Assemble project" feature in SDK Browser.
  • Support for both release and debug engine builds in the editor.
  • Introduced new set of samples.
  • A lot of bugfixes.

Improved Rendering of Atmosphere

Atmosphere rendering has been completely reworked in this release. Right now it is based on interpolation between several LUTs (Look-Up Textures) describing different states of the sky during the day. Improving realism for clouds is planned as the next step.

Visual Quality

The new sky brings dynamic environment lighting and fast sky reflections without the need for environment probes. It is also possible to use the high-quality photos as a base for the LUT gradients.

Light scattering now works correctly with particle systems, volumetric objects and multi-layered transparent objects.

Haze rendering has been improved as well. Added the Max distance parameter, which sets the distance of 100% dense haze concealing all the distant objects. There are also two different modes of haze rendering:

  • render_haze 1 is to use solid color
  • render_haze 2 is to use color from the sky LUT (recommended for better realism)

Time of Day and Weather

To change the time of the day, simply rotate the Sun or Moon object and the sky rendering will be automatically update respectively (previously, one had to use the Tracker system for that).

To simulate mixed weather conditions, it is currently allowed to blend between three environment presets.

Sun and Moon

The sky now supports rendering of the Moon and the Sun at the same time.

The "Scattering" option in the WorldLight object provides the following lighting types:

  • None — render the atmosphere as if there were no global lights, that is, there will be no sky color gradient in any direction
  • Sun — render the atmosphere in accordance with the Sun's lighting
  • Moon — render the atmosphere in accordance with the Moon's lighting

There is also a new Disable angle setting for LightWorld defining a critical angle above the horizon, where the light source is still enabled.

Easy Setup

Setting up sky is much easier with the new system: no more esoteric parameters. The new light scattering is also more predictable: you get desired results with less iterations. Light scattering settings have been moved to Rendering settings / Environment in the editor.

There are nice ready-to use presets (clear sky, overcast, indoor dark lighting) available as well.

Increased Depth Precision

Aerospace simulation often requires an ability to render very close and very distant objects in the same frame without Z-fighting or any other depth buffer issues. We have increased depth precision thanks to the logarithmic depth buffer (to enable, use the render_logarithmic_depth 1 console command), so now UNIGINE is even a better fit for planetary rendering than before.

There is a nice 3rd-party demo explaining advantage of logarithmic depth buffer over normal one.

Improved Antialiasing

  • Increased visual quality of TAA in motion.
  • FXAA has been integrated into the engine.
  • Anti-aliasing mode is now controlled with render_antialiasing console command:
    • 0 - disable
    • 1 - FXAA
    • 2 - TAA
  • Added bright pixels removal for TAA.
  • Fixed ghosting effect on vegetation.

Introducing ObjectText

ObjectText is a simple node for placing a flat text in 3D space. The text is rendered into a texture and then overlayed over a flat polygon. It uses trilinear filtering and mipmaps for correct display of the text at any distance. There is no noise influence to the object and it is not distorted by the TAA.

As a font you can use either TrueType (TTF) or a texture atlas with letters.

Performance Optimizations

  • Scenes with a single LightWorld instance gained extra performance optimizations.
  • Increased speed of decals rendering. The render_rwtextures console command allows you to enable/disable rendering optimization (requires OpenGL 4.2 core profle, not supported on OS X; for DirectX 11 you should set render_optimization_normalbuffer 1 before render_rwtextures 1).
  • Drastically increased speed of grass generation.
  • Increased speed of the materials loading.

Other Renderer Changes

  • Removed permutation limit (65535 combinations) in shaders: now it is possible to add a lot of custom material states into shaders (up to 4 billions of combinations).
  • Restored the triplanar material options in the mesh_base material, for meshes with auto-generated UV coordinates (States -> Base map/Normal map -> Triplanar). The corresponding parameters are: Base/Detail triplanar pow.
  • Fixed rendering of the mesh_leaf_base and mesh_stem_base materials.
  • Fixed DecalMesh and ObjectMeshDynamic behavior on mesh change.
  • Default terrain_base textures are now white.
  • Fixed multiplication blending for decals: the diffuse color now influences the microfiber effect.
  • Added the Deferred state to the mesh_leaf_base and mesh_stem_base materials.
  • Fixed tweaking of the LightOmni Shadow size parameter.
  • Improvements in Visualizer (depth bias fixed, a couple new methods, etc).
  • Fixed shadows noise.
  • Added the render_shadow_shafts_quality console command allowing setting the texture size for the shadow shafts effect (0 — the quarter of the screen; 1 — the full screen).
  • Improved shadows cascade blending.
  • Fixed the SSAO ghosting effect.

Editor

  • Fixed FBX import in Merge static meshes mode.
  • Improved undo/redo system.
  • Added visualization of the G-buffer data (Rendering panel -> Buffers).
  • Hotkey presets can now be located in the folders specified by the -extern_path instruction.
  • Changed the Background alpha mask parameter in Video Grabber into toggle.
  • Removed the Color option in the Terrain Grabber (the Diffuse option is used instead).
  • Fixed incorrect textures import in the Landscape plugin.
  • Fixed behavior of the editor_quit console command: Qt-based windows will also be closed.
  • Deleted the Decal Grabber plugin.
  • Fixed node cloning.
  • Fixed textures orientation in the Terrain Grabber.
  • Default UnigineEditor graphic API is now DirectX 11.
  • Improved Asset Browser:
    • Added assets copying and renaming.
    • Added folder creation.
    • Added items zooming.
    • Increased speed of assets loading and reloading.
    • Fixed large memory consumption issue on lots of FBX files import.
    • Added standard hot keys (arrows, Del, F2, etc.).
  • Increased maximum value of Animation FPS to 9999 on the FBX import.
  • Added support for non-ASCII symbols for Windows startup options.
  • Improved meshes streaming when editor is loaded.

SDK Browser

  • Only one running instance of the SDK browser in the local network is now required (it will be automatically discovered by other machines if SDK Browser is running on Windows and Linux, on OS X it is required to specify -licensing_host IP parameter on other machines) for users with per-company licenses.
  • Added an Assemble project option allowing you to create ready-to-ship builds (Project / Other Actions).
  • Added support for the OS X El Capitan.
  • Added Debug/Release Editor option allowing you to choose the editor version when editing the project (available in the additional menu under the Edit Content button of the project).
  • Added global settings for the Quad Buffered Stereo technology.
  • Improved errors notifications.
  • Improved upgrading of project's content.
  • Automatic update of screenshots in the Projects section on exit from the editor.
  • Bug fixes and improvements.

C++ and C# API

  • Added ObjectGrass interface.
  • Added ObjectSky interface.
  • Added ObjectMeshClutter interface.
  • Improved Ptr<> implementation: it can now be stored in Qt containers.
  • Added getSHA1(), getMD5() and getCRC32() methods to the Blob class returning corresponding checksums.
  • Fixed crash on calling getSubTree() and getFormattedSubTree() methods of the Xml class when the .xml is empty.
  • Added findChild() method to the Xml class. It searches for the Xml node child by its name.
  • Added set/getViewportCorrection() methods to the Player class for making the projection matrix unaltered by different viewport aspect ratios (1 by default). This could be useful for custom screen projections.
  • Added removeSurface() and removeSurfaces() methods to the ObjectMeshDynamic class removing surfaces by the name/index.

UnigineScript

Other Engine Changes

  • Added support for OS X El Capitan.
  • Added C++11 and microprofile by default on the OS X.
  • Added xcodeproj for building the engine and main applications.
  • Unified screenshots capturing in engine and editor:
    • Screenshots are taken on the F12 hot key.
    • Default saving paths: bin/screenshots and data/screenshots correspondingly.
  • The -engine_log startup CLI can now accept any paths (not only relative ones).
  • Fixed calculation of mesh projections in Syncker.
  • To get the final shader view after preprocessing specify EXPORT_SHADER(file_name) (relatively to the data path).
  • Fixed ObjectMeshSkinned animation when loading the .anim file with the same name.
  • A lot of bugfixes.

Introducing New Samples

The new Samples demo contains various examples on using the built-in UNIGINE objects with explanation of different settings. These samples are artists-friendly - feel free to take a look into the content. You can find them in the Samples / Demos section of the SDK browser.

Decals

  • Usage examples showing different decals use cases
  • Decal materials blending types
  • Difference between DecalProj, DecalOrhto and DecalMesh

Materials

  • Demonstration of material parent-child hierarchy and dependencies
  • Different samples of the PBR material usage

Light Sources

  • Demonstration of LightOmni, LightWorld and EnvironmentProbe
  • Different settings of LightOmni
  • Different settings of LightProj

Particles Systems

  • Particles composite effect
  • Forces, noises and deflectors influencing particles
  • Particles materials and settings
  • Particles parameters
  • Particles types
  • Particles emitter types

The set of samples will be extended in further releases.

Documentation

Localization

We're working towards localizing the documentation into Russian and Chinese.

Russian:

Chinese:

At the moment only some articles are translated, more to come.

Build: ()