Unreal Engine 4.2 announcement

 

Unreal just announced the contents of the upcoming 4.2 update.  I’m not sure when exactly it is going to be dropping ( I am downloading a 1.3GB update as we speak, but I don’t think it’s 4.2 ).  Regardless there is a stupid (good) amount of content in this update:

 

NEW: SAMPLE VEHICLE GAME

Vehicles are now fully supported in Unreal Engine! To celebrate we’ll be releasing a really cool sample game that demonstrates a fun off-road racing experience!  This will be available for free on the Marketplace with 4.2.

New Sample Vehicle Game

  • Out of the box support for 4WD, FWD, and RWD drive trains.
  • The default drive train simulation assumes 4 wheels; however it will work with any number of wheels.
  • As many gears you desire.
  • Automatic and semi-manual transmissions.
  • And it is all completely exposed to Blueprints!

Mechanical Setup for Vehicle Game

  • Full documentation on setting up a vehicle will be available on the release of 4.2
NEW: STYLIZED RENDERING SAMPLE

The Stylized Rendering sample will be available on the Marketplace for free! This sample showcases the rendering flexibly of Unreal Engine 4.

Stylized Rendering Sample

NEW: CAMERA ANIMATION SYSTEM!

Support for CameraAnims has now been added into Unreal Engine 4! These are very similar to CameraAnims from Unreal Engine 3, but now expanded with Blueprint support.

  • Conceptually, a CameraAnim is simply an animation that can be layered onto the in-game camera.  You can animate the camera position and rotation, FOV, and post process settings.
  • They can be created in the Content Browser, you can convert a track in Matinee to one, or you can import keyframes from external tools like Maya

CameraAnim System

  • To edit a CameraAnim, simply double click the asset in the Content Browser like you would any other asset. The CameraAnim editor is slightly customized version of Matinee. 
  • Multiple CameraAnimInsts (up to 8 currently) can be active at once, all blending and contributing to the final camera settings.
NEW: USER-DEFINED STRUCTURES FOR BLUEPRINTS

User Defined Structures are a brand new asset that is now available for use from within the editor!

A User Defined Structure can be created in the Content Browser.

User-Define Structures in Blueprints

They can be edited in the standalone editor by double clicking them in the Content Browser. Once you are done editing them, you can create a variable of a type of your newUser Defined Structure in your Blueprints.

Content Browser Blueprints

Like vectors, rotators, and other structures, your User Defined Structure will have Makeand Break nodes. User Defined Structures should behave like native structures: USTRUCT(BlueprintType).

NEW: BLUEPRINT FUNCTION LIBRARY

Users can now create a blueprint function library asset!  This allows you to create a nice library of Blueprint functions that can be used throughout your project!

Blueprint Library

Unlike the Blueprint Macro Library, Blueprint Function Libraries don’t require a Parent Class, and are able to be called by all Blueprints in the current project.

NEW: FABRIK INVERSE KINEMATICS SOLVER

FABRIK stands for Forward And Backward Reaching Inverse Kinematic.  It’s an IK solver that works on a chain of bones of any arbitrary length!

Fabrik Inverse Kinematics Solver

  • End Effector settings are the same as our TwoBone_IK node. It can be an absolute Transform, or a relative one (based on another bone from the same Skeleton).
  • In the Solver section, you define the chain of bones to use, from the ‘Root’ to the ‘Tip’. The ‘Tip’ will try to reach the end effector location.
  • End Effector Rotation Source allows you to control the rotation (maintain component space, local space, match end effector target rotation).
  • Precision is how close it needs to get. The lower, the more precise it gets to the End Effector Target, but the more expensive. (Although from tests it does a really nice job, and much quicker than the CCD_IK node).
  • MaxIterations is there to control performance, and make sure edge cases will not take frame rate down.

Thanks to GitHub community member Stephen Whittle for this feature!

NEW: CANVAS RENDER TARGETS

You can now draw Canvas UI straight to a texture, and then map that texture to objects in your scene!

  • This is fully supported by both C++ and Blueprint workflows. 
  • A special thanks to community member James Tan for submitting this.
NEW: VEHICLE TEMPLATE

We have a new project template that gives a simple automobile to start your new vehicle-based project with.  Both Blueprint and C++ versions of this template will be included with 4.2!

Vehicle Template

NEW: ANIMATION BLUEPRINT ASSET OVERRIDE EDITOR

Persona now has the ability to override the assets used in Play and Evaluate nodes in parent animation blueprints from a child blueprint.

The editor for this can be found in the Window menu in Persona:

Asset OVerride

The editor collects all of the nodes that can have their animation asset overridden. New assets can be picked from the pickers on the right of the panel. This works with longer inheritance chains too and shows the most appropriate defaults for that blueprint based upon the blueprints further up in the hierarchy. Finally, the “eye” button will link you to the AnimGraph node you are overriding:

AnimGraph

NEW: IMPROVED ANIM NOTIFY EDITOR

Multi-select support for Anim Notifies has been added into Persona! Shift + click adds to selection, and Ctrl + click toggles a notify selection.

You can drag the selection around and it will remain within the notify panel while obeying snaps:

Image Notifier

Copy/Paste works with groups too with a number of options:

You can paste them at the absolute, relative, or original time, in relation from where they were copied.

NEW: BLUEPRINT CUT AND PASTE FOR COMPONENTS

Cut/Copy/Paste commands have now been added to Components mode!

Blueprints Cute/Paste

  • Select individual components and either right-click or use keyboard Cut/Paste commands to copy or move components around!.
  • You can cut/copy components from one Blueprint and paste them right into another Blueprint!

If the selection includes a hierarchy, it will be preserved in the pasted copy!

NEW: EXPERIMENTAL MATH EXPRESSION NODE FOR BLUEPRINTS

There is a new experimental plugin available for the Math Expression Node for Blueprints. This node enables you to simply type in an expression and it will make the input pins, output pins, and a collapsed graph that contains your math expression.

Experimental Math Expression Node

  • To use this node, simply activate the Math Expression plugin in the plugin manager. It will then appear in the right click context menu of the Blueprint Graph Editor
  • Once created, type in your expression. If you make a mistake, you can edit the expression by renaming the node.
NEW: UV PARALLAX FOR SPLINETHICKEN MATERIAL FUNCTION

You can now add UV parallax to materials using the SplineThicken Material Function.  This makes it look like your object is round!

SlineThicken Example

  • The normals part of the function has been re-touched and they are now transforming correctly for all object rotations. This gives accurate lighting and specular!

New inputs:

  • UVs for Thickness (V2): This lets you specify a different UV channel for storing the thickness (tip to base) gradient. Useful to have this on UV1 or 2 for trees where there might be an overall tree length included not just a single pipe or branch etc.
  • UVs for Texturing (V2): This is the UVs for any textures you want applied to the pipe. You need to include and scale math here so it knows how much to parallax by. This is only needed if you want the 3D parallax correction results.
  • DeriveNormalZ (Bool): When checked, the shader will use DeriveNormalZ to compute the height of the normal. Gives much nicer ‘round’ shape. When false, 0.62 is assumed which is the average height of half a sphere centered at 0. If you want to use CustomUVs to solve the normal, you either need DeriveNormalZ to be false, or you need a row of vertices in the center of the spline mesh. If you do not have the added verts and use CustomUVs, it will say the normal has 0 height across the entire mesh.
  • AngleCorrectedNormals (Bool): Whether to use angle corrected normals when applying the additional normal texture. More accurate but more expensive.
  • AdditionalNormal (V3): Lets you specify an additional normalmap that will piggyback onto the vertexnormal transformation.

New output:

  • UVs with Parallax: This gives the UVs to use for any textures you want to have the 3d parallax.

Currently the function only handles 1 texture coordinate, so if you want multiple textures to have the correction, they all need to use the same scale.

NEW: ANIMATION DEBUG FEATURES

There are a number of new Animation Debug commands at your disposal. First there is in game rendering of a skeletal mesh’s bones:

Animation Debug Features

This is enabled using the ShowDebug Bones console command. As seen above the bones are represented by individual white lines.

  • An alternative look, matching the bones displayed in Persona, can be enabled via theShowDebugToggleSubCategory 3DBones console command.
  • Next is the animation debug output, which can be enabled using the ShowDebug Animation console command.
  • This is split up into 5 sections, each of which can be toggled on and off using theShowDebugToggleSubCategory command followed by the category name listed below e.g. ShowDebugToggleSubCategory SyncsGroups
    • SyncGroups: Displays the animation assets currently contributing to the final pose, organised by their sync group (or Ungrouped if they don’t belong to a group). By default Blendspaces listed in this section show all their contributing animations / weights. To reduce screen space used by the output this can be toggled off with ShowDebugToggleSubCategory FullBlendspaceDisplay.
    • Montages: Lists the montages currently being used by the character. The active montage is highlighted in green.
    • Curves: List the curve values (in Name: Value pairs) that have been activated by the playing animation(s).
    • Notifies: Display any notify states that are currently in effect.
    • Graph: Displays the active pose graph. The display starts with the last node (the root node) which represents the final pose and goes on to list all the nodes that go into making that final pose. Nodes are represented in such a way as to keep their hierarchy, allowing the user to see which nodes are connected to what without having to refer to the original blueprint asset. Active nodes are coloured green and (if they have been toggled to display usingShowDebugToggleSubCategory FullGraph ) inactive nodes are coloured grey.
NEW: LEVEL VIEWPORT STATS

Many useful engine stats can be visualized over the viewport.  You can now access these using the new “Stat” section under the viewport “Show” menu.

Level Viewport Stats

  • You can also toggle most of these stats by typing “Stat <name>” into a debug console prompt. 
  • By default the stats aren’t remembered between sessions, but you can turn that on by enabling “Save Engine Stats” in the editor’s Viewport preferences section.
NEW: OBJ MESH FILE FORMAT SUPPORT

You can now import .obj files for static meshes!

The file format is very simple so keep in mind that it does not support the following features:

  • Vertex color importing.
  • Collision importing.
  • Tangent and binormal importing.
  • Transforms.
    • The model will be rotated if not modeled with Z up because with OBJ importing we have no way of getting the source coordinate system.
NEW: UPGRADED FBX TO 2014

The FBX importer as now been upgraded to the 2014 version from Autodesk.

  • This allows Tangent and binormals on mirrored meshes to be imported correctly
  • You can still use the earlier FBX plugins found in any Maya/Max version before 2014, but you may get a warning on import when using a very old file.
NEW: WINDOWS XP SUPPORT (PREVIEW)

Developers working out of GitHub now have the ability to deploy your project to Windows XP.

  • To enable this, set WindowsPlatform.SupportWindowsXP to true in UnrealBuildTool, and edit your project’s settings to enable OpenGL shader support.
  • When running on Windows XP, OpenGL is automatically used instead of DirectX 11 for rendering
  • This feature is early in development and will be improved over time.
NEW: IMPROVED BLUEPRINT SUPPORT FOR ACTOR DESTRUCTION
  • In Blueprints, the new EndPlay function replaces the Destroyed function.  Existing usages of Destroyed will automatically update to the new function.
  • EndPlay will not just fire when an Actor is explicitly destroyed, but will also execute anytime an Actor ceases to be in the World.  This includes a level transition, a streaming level being unloaded, a PIE session ending, or Destroy being called for an Actor
  • In C++, the AActor::Destroyed virtual function remains, however it is primarily intended for editor transaction purposes.
  • The C++ AActor::EndPlay virtual function takes an enumeration parameter indicating the reason the Actor has been removed from the World.
  • The AActor::OnRemoveFromWorld virtual function, previously called for each Actor when the streaming level they belong to was unloaded, has been removed and its functionality included in AActor::EndPlay.
IMPROVEMENTS AND BUG FIXES

Editor

  • New: Vertex painting now works with Blueprints.
  • New: When attaching actors, you can now use an actor picker to choose which actor to attachto.
  • New: Added check for "Game View" when drawing geometry features in the editor.
  • New: You can now use Alt + [ or ] to adjust the size of the transform gizmo.
  • New: Collections now store and display a custom colour based on the local user settings.
  • New: Added option for Flat Bottomed collision to character components.
  • New: You now have the option to remove content downloaded from marketplace.
  • New: Creating multiple actors using drag and drop from the content browser now undo’s as a single transaction.
  • New: Added the ability to refresh the project browser list.
  • New: You can now chooe where to place a class added via the New Class Wizard.
  • New: You can now provide a function to get the objects you want to show in the details view when creating an FSimpleAssetEditor.
  • Moved Source Code Access functionality to a plugin.
    • Source code access is now performed on the main thread.
  • Changed Static Meshes to check Screen Size rather than Distance to calculate which LOD to use.
  • Changed renaming an actor so it now ignores leading or trailing space when validating the name.
  • Fixed static lighting to now be disabled for Instanced Static Mesh Components.
  • Fixed project template names and descriptions to now fall back to English if a valid translation cannot be found for the current language.
  • Fixed the Submit Files Dialog to now follow the same style as the rest of the engine.
  • Fixed the Cascade ToggleRealtime tooltip to match the other Editor Viewports.
  • Fixed Particle System Components to now toggle visibility correctly.
  • Removed viewport-position menu items from the scene outliner menu.
  • Disabled Ctrl-select when using vertex paint.
  • Content Browser
    • New: Enter and Space Bar keys can now be remapped for the Content Browser.
  • Material Editor
    • New: Release Stats and Build In Stats toolbar buttons now have icons.
    • New: Added Find Results tab to Material Editor.
    • New: Added shortcut for component mask on Shift+C.
  • Texture Editor
    • Changed the Use Specified Mip Level property (bUseSpecifiedMipLevel) to now default to false, and the number of cinematic mips is ignored by the UI when it’s true.
  • Persona
    • Changed the default and details inspectors so they are now disabled when editing a read only graph.
    • Fixed the erroneously set flag CPF_DisableEditOnTemplate by adding code to clear it.
  • Source Control
    • New: Added ability to sync directories from source control in the Editor.
  • New: Added P4 API 2014.2 with OpenSSL 1.0.1g.
  • BSP
    • New: A BSP actor is now deselected when none of its surfaces are selected.
    • Fixed the Slate Property Editor Combo element (SPropertyEditorCombo) to update the selection before opening itself.
  • UI
    • Fixed restoring from full screen to now set the window position on the native window.
  • Viewports
    • New: In-game Slate UI is now visible in editor viewports when in immersive mode.
  • Scene Outliner
    • New: Added filter that hides actors that aren’t in the current level.
    • New: There is now a menu option for scene outliner folders to select all the actors within that folder.
    • New: Duplicate now functions with hidden actors.
    • Changed the ‘eye’ visibility icon to acts on the current selection, if the row is selected.
    • Removed viewport-position menu items from the scene outliner menu.
  • Landscape
    • New: Implemented navigation geometry export for instanced static meshes.
    • New: Added support for landscape splines to FBX export.
    • Removed sculpting-only options from flatten tool when in paint mode.
  • Audio
    • New: Integrated Omni Radius from Unreal Engine 3.
  • Animation
    • New: Native Anim Notifies and states are now supported.

iOS, Android, and HTML5

  • Lots of iOS, Android, and HTML5 improvements – full details will be in the final release notes.

Blueprints

  • Fixed duplicate move calls occurring on Blueprint Graph nodes.

Rendering

  • New: The build scale is now taken into account when calculating a Static Meshes streaming texture factors.
  • New: Particle parameter distributions can now be used in conjunction with Color Over Life for GPU sprites.
  • New: Mesh Modifies Material Position now uses the result of the material translator.
  • New: Particle Lights now work with camera offset (per-view).
  • New: Added commandlet which lists all Static Mesh assets that were imported fromSpeedtrees.

 

 

An impressive amount of new feature in this update. The biggest have to be the ability to render UI components to in game objects as well as the new vehicle support.  The new camera animation system is also an impressive addition.  On of the smaller, but probably most important to many indie developers, is the addition of OBJ support for static mesh creation.  This opens up Unreal Engine to a whole realm of 3D creation tools that have no ( or poor ) FBX support, as the > $4,000 price tag on various Autodesk applications can make for a bitter pill.

 

I have to say, I continue to be amazed at how fast they are updating Unreal Engine.  Hopefully this update drops very soon.

News UDK


Scroll to Top