- Latest releases of popular Game Development repositories
Release notes
A lot of work this year went into improving PyBullet for robotics and reinforcement learning research. The SDK was used in several published research papers by Google Brain Robotics, including our RSS 2018 paper "Sim-to-Real: Learning Agile Locomotion For Quadruped Robots" , see the video here
Some of the improvements are related to maintaining determinism when saving and restoring a simulation, and improving the accuracy of GJK convex collision detection and btMultiBody.Release notes
This maintenance update fixes some issues in the 2.1 branch, updates thirdparty libraries, and updates the export templates to matching changing distribution requirements of Google Play and Apple Store. In particular, the Android templates now include x86_64 libraries and target the Android SDK 28. The iOS templates now target the iOS SDK 12.1.
Release notes
This is the first release of the GameNetworkingSockets library, coinciding with the first available version in the Steamworks SDK.
Version 1.0.x will maintain compatiblity with SteamworksSDK 1.44.
Release notes
Release notes are available here.
Required SDKs are attached to this post.
Release notes
4.0.0
Major updates
- New fancy forum! (Deltakosh)
- Inspector v2.0. Dev log (Deltakosh)
- Added support for parallel shader compilation (Deltakosh)
- Added Object Based Motion Blur post-process (julien-moreau)
- Added support for ammo.js as a physics plugin (Composite objects, motors, joints) (TrevorDev)
- Added support for soft bodies, which are 3D softbody, 2D cloth and 1D rope, in ammo.js physics plugin (JohnK)
- Added support for Convex Hull Impostor using ammo.js plugin (MackeyK24)
- Added
AmmoJSPluginscene file loader (MackeyK24)
- Added support for WebXR (TrevorDev)
- Added
customAnimationFrameRequesterto allow sessions to hook into engine's render loop (TrevorDev) - Added
Camera customDefaultRenderTargetto allow cameras to render to a custom render target (e.g., XR framebuffer) instead of the canvas (TrevorDev) - Added webXR camera which can be updated by a
webXRSession(TrevorDev) - Added
webXRSessionManagerto bridgexrSessionto babylon's camera/engine (TrevorDev) - Added
webXRExperienceHelperto setup a default XR experience (TrevorDev) - Added
WebXREnterExitUIandWebXRManagedOutputCanvasclasses to configure the XR experience (TrevorDev) - Added
WebXRInputto manage controllers for the XR experience (TrevorDev) - Control WebXR camera rotation using parent container (TrevorDev)
- Added
- GUI:
- Added
control.useBitmapCacheto optimize re-rendering of complex controls by keeping a cached version (Deltakosh) - Added new ImageBasedSlider to let users customize sliders using images (Deltakosh)
- Added support for clipboard events to let users perform
cut,copyandpasteevents (Saket Saurabh) - Added new ScrollViewer with mouse wheel scrolling for larger containers to be viewed using Sliders (JohnK and Deltakosh)
- Moved to a measure/draw mechanism (Deltakosh)
- Added support for nine patch stretch mode for images. (Deltakosh)
- Added invalidateRect to AdvancedDynamicTexture to improve perf for heavily populated GUIs, works with shadows (TrevorDev)
- Added
- Migrated the code to modules and deploy ES6 npm packages (Sebavan)
- Added TrailMesh class. Credit to furcatomasz (danjpar)
- Support rendering to a multiview outputRenderTargetTexture with multiview engine component to improve performance for XR scenarios (TrevorDev)
- PBR (Sebavan):
- Added clear coat
- Added anisotropy
- Added sheen
- Added sub-surface
- Added energy conservation through multiscattering BRDF
- Added Inspector Debug Mode
- Added Smith Height Correlated Visibility term (white paper)
- Added SH Harmonics
- Added STL exporter (pryme8)
Optimizations
- Added an engine creation option to compile all shaders with medium precision (Deltakosh)
- Optimized effect reused for shadow maps (Deltakosh)
- Added support for scissor testing (Deltakosh)
- Improved shader precision detection (Deltakosh)
- Added support for bone matrix texture, allowing skeletons to use a texture instead of uniforms when possible (Deltakosh)
- Refactored of the SolidParticleSystem code for performance and code quality improvement (barroij)
- Added per solid particle culling possibility:
solidParticle.isInFrustum()(jerome) - Performance-oriented changes (barroij):
- Prevented avoidable matrix inversion or square root computation.
- Enabled constant-time removal from the
transformNodesarray andmaterialsarray of theScene. As a consequence, the order of the element within these arrays might change during a removal. - Enabled constant-time removal from the
instancesarray of aMesh. As a consequence, the order of the element within this array might change during a removal. - Stopped calling
Array.spliceon thescene.meshesarray and on theengine._uniformBufferwhen removing an element. As a consequence, the order of the element within these arrays might change during a removal. - Added an option
useGeometryUniqueIdsMapin theSceneconstructor options. When set to true, eachSceneisntance will have and will keep up-to-date a map of geometry peruniqueId. This is to avoid browsing all the geometries of the scene when a new one is being pushed. It also enables a removal of geometry in constant time. Disabled by default. - Added an option
useMaterialMeshMapin theSceneconstructor options. When set to true, eachMaterialisntance will have and will keep up-to-date a map of its bound meshes. This is to avoid browsing all the meshes of the scene to retrieve the ones bound to the current material when disposing the Material. Disabled by default. - Added an option
useClonedMeshhMapin theSceneconstructor options. When set to true, eachMeshwill have and will keep up-to-date a map of cloned meshes. This is to avoid browsing all the meshes of the scene to retrieve the ones that have the current mesh as source mesh. Disabled by default. - Added
blockfreeActiveMeshesAndRenderingGroupsproperty in theScene, following the same model asblockMaterialDirtyMechanism. This is to avoid callingScene.freeActiveMeshesandScene.freeRenderingGroupsfor each disposed mesh when we dispose several meshes in a row. Enable by settingblockfreeActiveMeshesAndRenderingGroupstotruejust before disposing the meshes, then set it back tofalsejust after. - Prevented code from doing useless and possible time consuming computation when disposing the
ShaderMaterialof aLinesMesh. - Make a better use of the
isIdentitycached value within aMatrix. - Make sure we browse all the submeshes only once in
Material.markAsDirtyfunction. - Added an
Vector3.UnprojectRayToRefstatic function to avoid computing and inverting the projection matrix twice when updating a Ray.
- Added per mesh culling strategy (jerome)
Updates
GUI
- Added
inputText.onKeyboardEventProcessedObservable(Deltakosh) - Added
button.imageandbutton.textBlockto simplify access to button internal parts (Deltakosh) - Added
slider.displayThumbto show/hide slider's thumb (Deltakosh) - Added
grid.rowCount,grid.columnCountandgrid.getChildrenAt()(Deltakosh) - Added
Control.AllowAlphaInheritanceto let users control the way alpha is used (inherited or not) (Deltakosh) - Added support for performing operations like select all, text highlight, delete selected in
inputText(Saket Saurabh) - Added
inputText.onTextCopyObservable,inputText.onTextCutObservableandinputText.onTextPasteObservableto inputText (Saket Saurabh) - Added
AdvancedDynamicTexture.onClipboardObservableto observe for clipboard events in AdvancedDynamicTexture(Saket Saurabh) - Added
inputText.onFocusSelectAllto allow complete selection of text on focus event.(Saket Saurabh) - Added mouse drag to highlight text in
inputText(Saket Saurabh)
Core Engine
- Added
reflectionMatrixsupport for morecoordinatesMode's (Dennis Dervisis) - Added new
WebRequestclass to centralize all network requests. Can be used to configure headers of all network requests (Deltakosh) - Added
WebRequest.CustomRequestHeaders,WebRequest.UseCustomRequestHeadersto send Custom Request Headers alongside XMLHttpRequest's i.e. when loading files (Tools.Loadfile) from resources requiring special headers like 'Authorization' (susares) - Added support for user clip planes to LineMeshes (Deltakosh)
- Added
shadowGenerator.onBeforeShadowMapRenderMeshObservable(Deltakosh) - Added support for
scene.customLODSelectorto let users define their own LOD rules (Deltakosh) - Added
animatable.onAnimationLoopObservable(Deltakosh) - Added
animationGroup.onAnimationLoopObservable(Deltakosh) - Added FlyCamera for free navigation in 3D space, with a limited set of settings (Phuein)
- Added
Engine.onNewSceneAddedObservable(Deltakosh) - Added new
PassCubePostProcessto render cube map content (Deltakosh) - Added support for utility layer for SkeletonViewer (Deltakosh)
- Added utility function
Tools.BuildArrayfor array initialisation (barroij) - Introduced a new
IOfflineSupportinterface to hide IndexedDB (Deltakosh) PBRMaterialandStandardMaterialnow use hot swapping feature for shaders, allowing them to keep using a previous shader while a new one is being compiled (Deltakosh)- Aligned
BoundingBoxandBoundingSphereAPI and behavior for clarity and simplicity, removingBoundingBox's methodsetWorldMatrixand disallowing modification of the underlying world matrix except by callingreConstructorupdate(barroij) - Make sure that
Material.markAsDirtyand all themarkXXXDirtymethods early out whenscene.blockMaterialDirtyMechanismis true. (barroij) - Add updateUpVectorFromRotation to target camera to allow the up vector to be computed from rotation (TrevorDev)
- Added
wrapboolean parameter toCreateBoxoptions to orientate images vertically on box sides (JohnK) - Added opacity texture support to
GridMaterial(Deltakosh) - Added support for deserializing morph target animations in animation groups
- AssetContainer dispose method (TrevorDev)
- Loading texture with KTX will fallback to non-KTX loader if KTX loader fails (TrevorDev)
Layerare now supported inRenderTargetTexture(Sebavan)- Made onscreen joystick's canvas public (TrevorDev)
- Added
.serializeand.Parsefunctions inReflectionProbeto retrieve reflection probes when parsing a previously serialized material (julien-moreau) - Added
clearGizmoOnEmptyPointerEventoptions andonAttachedToMeshObservableevent to GizmoManager (TrevorDev) - Added support for overriding the mesh used for the world matrix for a mesh with a skeleton (bghgary)
- Added support for linking a bone to a transform node (bghgary)
- Factored out
setDirectionfunction fromlookAtfor transform node (bghgary) - Added support for setting renderingGroupId and creating instances to
AxesViewer(bghgary) - Added vScale inversion of compressed KTX textures as they are inverted in the file and
UNPACK_FLIP_Y_WEBGLis not supported by KTX (TrevorDev) - Enabled dragging in
boundingBoxGizmowithout needing a parent (TrevorDev) - Added
InputsManagerand keyboard bindings forFollowCamera(mrdunk) - Fixed typo in
FollowCamera InputsManagerwhen limiting rotation to 360 degrees (mrdunk) - In
FollowCamera InputsManager, allowed choice of modifier key (Alt, Ctrl and/or Shift) for each camera movement axis (mrdunk) - Added
MouseWheelbindings forFollowCamera(mrdunk) - Tweaked
MouseWheelbindings forFollowCameraorientations (mrdunk) - Added maximum and minimum limits for
FollowCameraparameters (mrdunk) - Converted
ArcRotateCamerato use newBaseCameraPointersInput(mrdunk) - Added transparency support to
GlowLayer(Sebavan) - Added option
forceDisposeChildrentomultiMaterial.dispose(danjpar) - Added
Pointerbindings forFollowCamera(mrdunk) - Added Inspector light gizmo with icons (TrevorDev)
- Added option
multiMultiMaterialstomesh.mergeMeshes(danjpar) - Exposed fallback camera distortion metrics option in
vrExperienceHelper(TrevorDev) - Added
OnAfterEnteringVRObservabletowebVRHelper(TrevorDev) - Added support for side by side and top/bottom VR videos in the video dome (Sebavan)
- Added unit tests for
BaseCameraPointersInputandArcRotateCameraPointersInput(mrdunk) - Prevented
onActiveCameraChangedfrom being fired when rendering rig cameras (TrevorDev) - Added
MeshExploderclass (danjpar) - Enabled
Observables to make observers top or bottom priority (TrevorDev) - Prevented mesh outline from being shown through the mesh when it's transparent (TrevorDev)
- Prevented
DeviceOrientationCamerafrom being modified by mouse input when the orientation sensor is active (TrevorDev) - Added
LoadScriptAsynctools helper function MackeyK24) - Added
customShaderNameResolvetoPBRMaterialBaseto allow subclasses to specify custom shader information MackeyK24) - Added
PBRCustomMaterialto material library to allow easy subclassing of PBR materials MackeyK24) - Added custom defines for roughness and microsurface in
PBRCustomMaterialLockphase) - Added auto-exposure support in
StandardRenderingPipelinewhen HDR is enabled (julien-moreau) - Added
EquiRectangularCubeTextureclass to enable the usage of browser-canvas supported images asCubeTextures (Dennis Dervisis) - Added
EquiRectangularCubeTextureAssetTaskto be able to loadEquiRectangularCubeTextures via Asset Manager (Dennis Dervisis) - Added
Matrix.RotationAlignToRefmethod to obtain rotation matrix from one vector to another (sable) ArcRotateCamerawill now cache the necessary matrices when modifying its upVector, instead of calculating them each time they're needed (sable)- Updated
DracoCompressionto use web workers (bghgary) - Added
LOD Babylon Mesh Entitiesto support to babylonFileLoader.ts (MackeyK24)
OBJ Loader
- Added color vertex support (not part of standard) (brianzinn)
- Added option for silently failing when materials fail to load (brianzinn)
- Added option to skip loading materials (brianzinn)
glTF Loader
- Added support for mesh instancing for improved performance when multiple nodes point to the same mesh (bghgary)
- Switched to create
TransformNodeobjects instead ofMeshobjects for glTF nodes without geometry (bghgary) - Added glTF JSON pointers to metadata of nodes, materials, and textures (bghgary)
- Enabled loading KTX textures in the gltf2 loader when textureFormat is set on engine (TrevorDev)
- Fixed skinned meshes to behave as intended by glTF (bghgary)
- Set an override mesh on skinned meshes instead of reparenting to the
__root__transform node - Linked loaded bones to the transform node created for the corresponding glTF node
- Set an override mesh on skinned meshes instead of reparenting to the
- Improved load performance by blocking material dirtying during load (bghgary)
- Added animation group target override to support custom animation targets (MackeyK24)
- Added
loadMeshPrimitiveAsyncextension support (MackeyK24)
glTF Serializer
- Added support for exporting
KHR_lights_punctual - Prevented mesh normals from being flipped when exporting a glTF from a Babylon scene with right-handed coordinate system (Nicholas Barlow)
Post-Processes Library
- Added the Ocean post-process (julien-moreau)
Materials Library
- Added the
cameraOffsetvector property in theSkyMaterialto get an offset according to the horizon (julien-moreau) - Fixed
GradientMaterialto consider disableLighting working as emissive (julien-moreau) - Fixed fresnel term computation in
WaterMaterial(julien-moreau) - Fixed
TerrainMaterial.isReadyForSubMeshto remove WebGL warnings (julien-moreau) - Fixed
MixMaterial.isReadyForSubMeshto remove WebGL warnings (dad72)
Infrastructure
- Migrated CI to Azure DevOps pipelines (Sebavan)
- Created test suites for both WebGL1 and WebGL2 (Sebavan)
Bug fixes
- Fixed
ArcRotateCamera.setTarget(position was sometimes wrong) (Deltakosh) - Fixed
TransformNode.setDirection(orientation was wrong) (Deltakosh) - Fixed
ArcRotateCameracontrol whenupVectorwas modified (Deltakosh) - Fixed
anaglyphmode for Free and Universal cameras (Deltakosh) - Fixed
FileLoader's loading of a skybox and added a parsed value for whether to create with PBR or STDMaterial (Palmer-JC) - Removed bones from rootNodes where they should never have been (Deltakosh)
- Refocusing on input gui with pointer events (TrevorDev)
- Gizmo scaling not consistent when camera is parented (TrevorDev)
- Context loss causing unexpected results with dynamic textures, geometries with the same name and reflectionTextures (TrevorDev)
CreateScreenshotUsingRenderTargetstretches mirror textures when setting both width and height (TrevorDev)- VR helper only updating VR cameras position when entering VR, rotation was missing, laser distance stopped working (TrevorDev)
- Fixed VR controllers after
gltfLoadertransformNodewas changed (TrevorDev) - Bounding Box
fixedDragMeshScreenSizestopped working and allow rotating through bounding box (TrevorDev) - VR helper would rotate non-VR camera while in VR (TrevorDev)
PointerDragBahaviorusingMeshas base type, causing type-checking problems withAbstractMesh(Poolminer)TransformNodelookAtnot working in world space when node's parent has rotation (TrevorDev)MakeNotPickableAndWrapInBoundingBoxhad unexpected behavior when input had scaling of 0 on an axis (TrevorDev)- Fixed an issue with loading base64 encoded images in the glTF loader (bghgary)
- In multi-camera scenes the Inspector would cause the camera's interaction events to get detached (TrevorDev)
- Fixed delete highlighted text after keyboard input, beat delay after double click event in
InputText(Saket Saurabh) - Fixed
SixDofDragBehaviorwhen the camera is parented (TrevorDev) - Deactivate WebVR lasers when not in VR (TrevorDev)
- Update physics position using
absolutePositioninstead ofpivotPosition(TrevorDev) - Disabled camera arrow key controls when the command key is pressed on Mac OS (kcoley)
- Viewer should not set
receiveShadowson an instanced mesh (TrevorDev) - Rotation/scaling snapping not working in the negative direction (TrevorDev)
- Updated comment in
TransformNode.rotationQuaternionto include undefined as one of the potential return values (nathankmiller) - Cannon.js ignores
connectedPivotjoint parameter (TrevorDev) - Fixed case sensitive paths (mrdunk)
- Fixed more case sensitive paths (mrdunk)
- Attaching a
BoundingBoxGizmoon a child node shouldn't remove its parent, rotation gizmo should work on object with parent (TrevorDev) - ammo.js fix including issue caused after modules update and use world contact point to be consistent with Oimo and Cannon (TrevorDev)
- Warn of motor with
maxForcein Oimo plugin and set default force to be consistent with others, Cannon.js support no impostor, Cannon.js cylinder axis, ammo.js wake up impostor when apply force/impulse (TrevorDev) - Utility layer should render on last active camera (TrevorDev)
PointerDragBehaviorshould not let the drag plane get out of sync when rotating the object during dragging (TrevorDev)- Do not crash the application if WebVR
submitFramefails (TrevorDev) - Fix pinch action on
FollowCameraPointersInput(mrdunk) Tools.CreateScreenshotstopped working (TrevorDev)- Inspector showing duplicate nodes when attached to gizmo (TrevorDev)
- Added missing dependencies for files to support including them from a direct path (eg.
import "@babylonjs/core/Helpers/sceneHelpers";) (TrevorDev) AssetContainershould not dispose objects it doesn't contain. Support for environmentTexture add/remove (TrevorDev)- Fixed
mesh.visibilitynot working properly when certain material properties are set that changes the interpretation of alpha (e.g. refraction, specular over alpha, etc.) (bghgary) - Fixed material and texture leak when loading/removing GLTF/obj/babylon files with
AssetContainer(TrevorDev) - Avoid exception when removing impostor during cannon world step (TrevorDev)
- Fixed
ArcRotateCameradivide by zero error (when looking along up axis) inrebuildAnglesAndRadius(sable) - Fixed
ArcRotateCamerarebuildAnglesAndRadiuswhenupVectormodified (sable) - Fixed code branch, that does not try to (re)load an
EquiRectangularCubeTexture/HDRCubeTexturewhen the caching returns an empty or corruptInternalTexture(Dennis Dervisis) - Added error event listener (bubbling up the
onErrorcallback chain) in case anEquiRectangularCubeTexturecannot be loaded, because of a wrong path or IO problems (Dennis Dervisis) - 3D GUI buttons no longer will scale up when pressing with a multitouch device (TrevorDev)
- 2D GUI elements will use the last clicked controller instead of only the right controller when dual VR controllers are interacting with an element (TrevorDev)
- Virtual keyboard not showing up when made visible (TrevorDev)
Core Engine
- Fixed a bug with
mesh.alwaysSelectAsActiveMeshpreventing layerMask to be taken in account (Deltakosh) - Fixed a bug with pointer up being fire twice (Deltakosh)
- Fixed a bug with particle systems being update once per camera instead of once per frame (Deltakosh)
- Properly handled the
LinesMeshintersectionThresholdby using its value directly when the intersection against aRayis checked instead of extending theBoundingInfoaccordingly (barroij) - Added an
InstancesLinesMeshclass used to create instance ofLinesMeshso that each instance can have its ownintersectionThresholdvalue (barroij) - Fixed the
LineEdgesRendererused for edge rendering ofLinesMeshto properly handleLinesMeshs made of disconnected lines and made it work for instance ofLinesMesh(barroij) - Fixed
Matrix.toNormalMatrixfunction (barroij) - Added missing effect layer to asset container (TrevorDev)
- Fixed effect layer compatibility with multi materials (Sebavan)
- Added a
DeepImmutable<T>type to specifiy that a referenced object should be considered recursively immutable, meaning that all its properties arereadonlyand that if a property is a reference to an object, this object is also recursively immutable. (barroij) - Fixed
VideoTextureposter property when autoplay is turned off. - Fixed position and rotation of plane mesh created by
MeshBuilder.CreatePlanewhen specifying a source plane (sable, bghgary) - Fixed inspector dynamic loading (Sebavan)
- Fixed
infiniteDistancenot working anymore (Sebavan) - Fixed bug in
SolidParticleBoundingSphereupdate within theSolidParticleSystem(barroij) - Updated picking so that when the picked Mesh is a
LinesMesh, the index of the picked line is returned in thefaceIdproperty of thePickingInfo, as we do with face index the pickedMeshis made of triangle faces (barroij) - Fixed unintentional cloning of mesh observables (Sebavan)
- Fixed Inspector resolution with AMD loader (Sebavan)
- Fixed a bug when a call to
updateIndicesleads to changing the size of the index buffer by recreating the subMeshes in that case (barroij) - Added option to disable gazeTracker color changes in vrExperienceHelper (TrevorDev)
- Added
PointerDragBehaviorvalidateDragpredicate to stop dragging to specific points (TrevorDev) - Added Auto Update Touch Action #5674(Sebavan)
- Added hemispheric lighting to gizmos to avoid flat look (TrevorDev)
- Fixed a bug causing
WebRequest.opento crash ifWebRequest.CustomRequestHeadersare set #6055(susares) - Fixed a bug causing
Mesh.cloneto crash if no physicsEngineComponent is used (barroij) - Fixed zoom inertia making it difficult to zoom out with ArcRotateCamera (TrevorDev)
- Added option for
isInFrustumto checkrigCamerasso thatviewMatrixupdates forrigCamerascan notify their parent (TrevorDev) - Properly handled unindexed
LinesMesh(rendering and picking) (barroij)
Loaders
- Added missing
loadedAnimationGroupstoMeshAssetTask(bghgary) - Added missing
linkTransformNodetoBabylonFileLoader(MackeyK24)
Breaking changes
- Replaced all references to XmlHttpRequest with
WebRequest(which provides the same signatures) (Deltakosh) - Set
Database.IDBStorageEnabledto false by default (Deltakosh) - Renamed
Database.openAsynctoDatabase.open(Deltakosh) - Renamed
scene.databasetoscene.offlineProvider(Deltakosh) - Removed
BoundingBox.setWorldMatrixand changedBoundingBox.getWorldMatrixto return aDeepImmutable<Matrix>(barroij) - Changed
Matrix's accessormand methodstoArrayandasArrayto return aDeepImmutable<Float32Array>as the underlying array is not supposed to be modified manually from the outside of the class (barroij) - Removed some deprecated (flagged since 3.0) properties and functions, all of which are superceded by the
SceneInstrumentationclass unless otherwise specified (Deltakosh)scene.getInterFramePerfCounter()scene.interFramePerfCounterscene.getLastFrameDuration()scene.lastFramePerfCounterscene.getEvaluateActiveMeshesDuration()scene.evaluateActiveMeshesDurationPerfCounterscene.getRenderTargetsDuration()scene.getRenderDuration()scene.renderDurationPerfCounterscene.getParticlesDuration()scene.particlesDurationPerfCounterscene.getSpritesDuration()scene.spriteDuractionPerfCounterengine.drawCallsengine.drawCallsPerfCountershadowGenerator.useVarianceShadowMap(superceded byuseExponentialShadowMap)shadowGenerator.useBlurVarianceShadowMap(superceded byuseBlurExponentialShadowMap)
- The glTF loader now creates
InstancedMeshobjects when two nodes point to the same mesh (bghgary) - The glTF loader now creates
TransformNodeobjects instead ofMeshobjects for glTF nodes without geometry (bghgary)- Note: The root node is still a
Meshobject and is still the first in the returned list of meshes TransformNodeobjects are excluded from the returned list of meshes when importing meshTransformNodeobjects do not raiseonMeshLoadedevents
- Note: The root node is still a
- Renamed
xAxisMesh,yAxisMesh, andzAxisMeshofAxesViewertoxAxis,yAxis, andzAxisrespectively and changed return to aTransformNodeto represent the parent node of the cylinder and line of the arrow (bghgary) - Disallowed passing the engine into
Viewport.toglobalto prevent circular dependency (Sebavan) - Moved
Vector3.UnprojectRayToReftoRay.unprojectRayToRefinstance method to decrease class coupling (Sebavan) - Moved
Material.ParseMultiMaterialtoMultiMaterial.ParseMultiMaterialto decrease class coupling (Sebavan) - Removed
babylon.no-module.max.jsjavascript version has the Webpack UMD bundle covers both (Sebavan) - Removed
es6.jsjavascript as it is now available as a true es6 NPM package (Sebavan) - Removed
babylon.worker.jsjavascript following the lack of usage from the feature (Sebavan) - Removed
Primitive Geometriesas they were not in use since 2.0 (Sebavan) - Changed
shouldExportTransformNodecallback in glTF serializer options toshouldExportNode(kcoley) - Changed
PhysicsHelpermethod parameters for event calls (bobalazek)
Release notes
This is the 0.11.0 release of Agones.
Check the README for details on features, installation and usage.
Breaking changes:
- Move FleetAutoscaling to autoscaling.agones.dev group #829 (markmandel)
- Fixing SDK proto file according to style guide #776 (aLekSer)
Implemented enhancements:
- Add Events for common errors with Webhook FleetAutoscaler configuration #792
- Self allocation in Node.js is not supported #773
- In case of dynamic port allocation, offer the option to set the container port to the same value as the host port #294
- Implement EnqueueAfter on WorkerQueue #835 (markmandel)
- Changed AllocationEndpoint to array of endpoints #830 (pooneh-m)
- fix: check if NodeExternalIP is empty to fallback to NodeInternalIP #828 (aarnaud)
- Rewrite Agones Overview #824 (markmandel)
- Add Unity SDK #818 (whisper0077)
- PortPolicy of Passthrough - Same Port for Container and Host #817 (markmandel)
- Add Fleet RollingUpdate strategy params validation #808 (aLekSer)
- Batched Packed and Distributed Allocations #804 (markmandel)
- Add Events on FleetAutoscaler connection errors #794 (aLekSer)
- Expose allocate method in node sdk #774 (rorygarand)
- Adding an allocator service that acts as a reverse proxy. #768 (pooneh-m)
- Add Reserved GameServer State #766 (markmandel)
- Add AKS, GKE and Helm terraform modules #756 (aLekSer)
- Add close method to node client #748 (BradfordMedeiros)
See CHANGELOG for more details on changes.
This software is currently alpha, and subject to change. Not to be used in production systems.
Images available with this release:
- gcr.io/agones-images/agones-controller:0.11.0
- gcr.io/agones-images/agones-sdk:0.11.0
- gcr.io/agones-images/agones-ping:0.11.0
- gcr.io/agones-images/cpp-simple-server:0.5
- gcr.io/agones-images/udp-server:0.11
- gcr.io/agones-images/xonotic-example:0.5
Helm chart available with this release:
Make sure to add our stable helm repository using
helm repo add https://agones.dev/chart/stableRelease notes
Bug Fixes
InputManager.preRenderdidn't get thetimeproperty correctly, causing input plugin methods that relied on it to fail.KeyboardPlugin.timewasn't being set to the correct value, causingcheckDownto fail constantly.