Xenko 1.1 Beta Released

author
Silicon Studio Corporation

Everyone on the Xenko team has been working hard to bring you new features and tools, including the Scene Editor, PBR, and PostFX. We are proud to announce that Xenko 1.1 Beta version is now available for download.

Example Asset

Highlights ๐Ÿ”—

Here are the new features on the new and updated version 1.1.0-beta:

  • Physically Based Rendering with Layered Material System
  • A brand new scene editor that is now the central piece of Xenko to assemble your game levels, test the rendering, script your entities.
  • Scene rendering compositor, offering a new way to define precisely how to render scenes in your game, apply post effects...etc.
  • Easy-to-use and powerful post-effects API coming along many built-in effects (Depth Of Field, Bloom, Lens Flare, Glare, ToneMapping, Vignetting, Film Grain, Antialiasing...)
  • New implementation of Shadow Mapping, supporting SDSM (Sample Distribution Shadow Maps with adaptive depth splits)
  • Scripting System, to easily add behavior and data to entities
  • In Visual Studio, when you edit .pdxsl shaders, there is now Error Highlighting and F12 (Go to Definition) to make shader editing as smooth as possible.
  • A new launcher, that can manage several versions of Xenko SDK side-by-side

We have been working to get as many mobile platforms to be included in this release but not all are fully supported yet. Some samples may not work yet so we ask for your patience. The whole team is hard at work to make sure that everything will work on the next update.

Details of upcoming releases will also be posted soon so please keep an eye on this blog!

Release date: 2015/04/28

New Features ๐Ÿ”—

  • Launcher: New launcher can now manage several versions of the Xenko SDK
  • Studio: Introducing a brand new scene editor
  • Studio: The scene editor is now the central component of the Studio
  • Studio: The asset log panel now display logs (errors, etc.) of the seleced assets and their dependencies
  • Studio: Packages now have properties that can be displayed and edited (to set the default scene and some graphics settings)
  • Studio: Editor and asset compiler are now x64 compatible.
  • Effects: New built-in post-effects: depth-of-field, color aberration, light streaks, lens flares, vignetting, film grain (noise)
  • Engine: New Material System supporting PBR materials, multi-layered materials with multiple attributes, including: Tessellation, Displacement, Normal, Diffuse, Specular/Metalness, Transparent, Occlusion/Cavity
  • Engine: New rendering pipeline compositor allowing to compose the rendering of the scene by layers and renderers
  • Engine: New Ambient and Skybox lighting
  • Engine: New light culling and object culling
  • Engine: New implementation of Shadow Mapping with support for SDSM (Sample Distribution Shadow Maps with adaptive depth splits)
  • Engine: New scripting system, to easily add behavior and data to entities.
  • Engine: New ComputeEffectShader class for compute-shader live compilation and dispatching
  • Engine: New entity background component to add a background in a scene
  • Engine: New entity UI component to add an UI on entities of the scene.
  • Graphics: Add a shared 2x2 pixel white texture on the GraphicsDevice (extension method)
  • Input: Add the possibility to hide and lock the mouse using LockMousePosition function
  • Mathematics: New SphericalHarmonics class
  • Physics: Renamed PhysicsEngine into Simulation, the engine now supports one separate Simulation for each scene.
  • Assets: New asset type RenderFrameAsset
  • Assets: New asset type ProceduralModelAsset

Enhancements ๐Ÿ”—

  • Assets: Yaml now uses a shorter qualified name without culture and keytoken.
  • Assets: Added AssetManager.Reload(), to reload on top of existing object
  • Assets: During asset compilation, improved logging to always display what asset caused an error
  • Assets: Assets can now have โ€œcompile-time dependenciesโ€ (i.e. when a Material layer embeds/uses another material at compile-time)
  • Assets: Add non-generic versions of Load and LoadAsync methods in the AssetManager
  • Assets: A Get method that allows to retrieve an already loaded asset without increasing the reference counter
  • Assets: An Unload method overload that takes an url as parameter instead of a reference.
  • Assets: Asset merging (reimport) is now more flexible
  • Assets: Add support for sRGB textures
  • Assets: Add support for HDR textures
  • Assets/FBX: Add better support for FBX scene unit and up-axis
  • Assets/FBX: Automatically generates normal maps if they are not present in a 3d model
  • Assets/FBX: Do not merge anymore vertices belonging to different smoothing groups
  • Build: Roslyn is now used to compile serialization code (instead of CodeDom)
  • Build: Improved logging of asset build
  • Build: Parallelization of the build has been improved.
  • Core: โ€œDataโ€ classes donโ€™t exist anymore. Now uses AttachedReferenceManager to directly represent design-time and runtime representation of an object with a single unified runtime class.
  • Core: Add Collections.PoolListStruct
  • Studio: If an asset or one of its dependency has a compile error, properly add a failure sticker on top of thumbnail, and details in the asset log
  • Studio: Inside a scene, entities, components and scripts can reference each others.
  • Studio: If a script canโ€™t properly be loaded (i.e. due to missing types), be nice and try to keep data as is for next save.
  • Studio: Reduce number of threads by sharing build system for assets, scene, preview & thumbnails (with priority management)
  • Studio: Shaders are compiled asynchronously (glowing green effect) and compilation errors will be visible (glowing red effect); various shaders are precompiled for faster startup.
  • Studio: Improved performance by using binary cloning instead of YAML.
  • Studio: Many visual improvement of the Studio user interface
  • Graphics: Add GraphicsDevice.PushState/PopState to save/restore Blend, Rasterizer, Depth states and RenderTargets
  • Graphics: Add Rasterizer wireframes states
  • Graphics: Add support for using new UserDefinedAnnotation for Direct3D11 API profiling
  • Graphics: Add support to generate additional texcoords from an existing vertex buffer in VertexHelper
  • Graphics: Add possibility to add a back face to the plane geometric primitive
  • Graphics: Add the possibility to bind TextureCube and Texture3D to the SpriteBatch
  • Effects: Infrastructure for recording shader compilations in a Yaml asset and regenerate shaders on different platforms (no UI yet)
  • Engine: The local transformation of entity linked with a ModelNodeLinkComponent is now taken in account in final world matrix calculation
  • Engine: Added ScriptComponent to easily add behavior and data to entities directly inside Xenko Studio
  • Engine: Materials are defined on Model, but can be overridden in ModelComponent
  • Engine: Add access to the SpriteAnimationSystem from the script context.
  • Mathematics: Add MathUtil.NextPowerOfTwo
  • Mathematics: Add Vector3 operators with floats
  • Mathematics: Add BoundingSphere.FromPoints from an native buffer with custom vertex stride
  • Mathematics: Add BoundingBoxExt for intersection between frustum and bounding box
  • Mathematics: Move all GuillotinePacker implementation copies to a single implem in Mathematics
  • Mathematics: Fix Color3 to Color4 implicit operator
  • Mathematics: Add Color3.ToLinear, Color3.ToSRgb, Color4.ToLinear, Color4.ToSRgb methods
  • Mathematics: Add swizzle extension methods for vector classes
  • Mathematics: Add explicit conversion method from Int3 to Vector3
  • Mathematics: Add MathUtil.Log2 method
  • Mathematics: Add extension method WithAlpha to Color class. It creates a transparent color from an opaque one
  • Physics: Added scaling parameter for Convex Hull Shape asset.
  • Physics: Added LocalRotation in collider shape asset description.
  • Physics: Removed Sprite workaround, added better default values to shapes.
  • VisualStudio: Improve highligting and navigation for pdxsl files
  • VisualStudio: Improve error messages when .cs file generation fails

Issues fixed ๐Ÿ”—

  • Assets: On OpenGL ES 3.0+ targets, HDR textures were converted to LDR during asset compilation.
  • Assets/FBX: Animation containing data for only some of the component the Translation/Rotation/Scale are now correctly imported
  • Engine: Correctly initialize transformation component rotation to the identity quaternion
  • Engine: EntityManager.Remove was destroying the hierarchy of the entity
  • Input: Fix the key down status when the game lose and gain focus under Windows
  • Input: Correctly translate control/shift/alt keys
  • Graphics: Implemented BlendStateDescription.Equals() and make a readonly copy of BlendState.Description.RenderTargets (so that user can't modify it). Fixes #139
  • Graphics: Various improvements and bugfixes to OpenGL renderer
  • Graphics: Add safeguard to avoid engine crashing when generating extremely big font characters
  • Graphics: Fix discontinuity problems in geometric primitive UV coordinates
  • Graphics: Fix crash when creating an unordered texture array of size greater than one
  • Graphics: Fix the calculation of Bufferโ€™s element count on DirectX
  • Mathematics: Matrix.Decompose output now a correct rotation matrix free of reflection
  • Mathematics: Fix bug in Matrix.Invert when determinant was too small
  • Mathematics: Fix in Color3.ToRgb method
  • Mathematics: Fix bug in Gradian property of Angle class
  • Physics: Fixed PhysicsDebugEffect shader, debug shapes should now render again.
  • Physics: Fixed issues related to creating collider shape assets in the Game Studio.
  • Shaders: Add missing GroupMemoryBarrierWithGroupSync keyword to shading language
  • Shaders: Fix order declaration of the constants and structures in generated shader
  • Shaders: Remove generation of key for shader parameters with the groupshared keyword
  • Studio: Many fixes on the undo/redo stack
  • Studio: The build log panel gets the focus only once per build
  • Studio: Fix a crash when undocking the Asset log
  • Studio: The Studio now have a minimum size at startup
  • Studio: Some entries in the settings menu were not working
  • Studio: Fix the sound preview when the source file of the asset has been changed

Breaking changes ๐Ÿ”—

  • Android: Android projects should be compiled against Android API v5.0 (only a compile-time requirement, runtime requirement is still Android 2.3+)
  • Assets: The entity asset has been removed, entities should be created inside a scene.
  • General: Previous Xenko 1.0.x projects cannot be loaded in this new version
  • Engine: Deferred lighting was removed. We will later add support for Forward+ and Deferred GBuffer shading
  • Engine: ScriptSystem.Add has been renamed ScriptSystem.AddTask. Add is now used only to add scripts
  • Engine: Sprites of SpriteComponents are now rendered in 3D. Their size is defined by the scale of the entity
  • Engine: UI should be configured via entities and UIComponents and not via the UISystem anymore
  • Engine: VirtualResolution has been removed from Game and should now be set directly in the UIComponent
  • Engine: Direction of Oz axis have been inversed in the UI to have an RH space
  • Graphics: ParameterCollection are now grouped together in a ParameterCollectionGroup at creation time. This object can then be used in Effect.Apply().
  • Physics: Collider Shape Asset and Physics Component have been simplified, their asset version is now not compatible with the old version.
  • Physics: Debug shape rendering has been replaced by editor gizmos.
  • Shaders: Previous generated code for pdxfx is broken and must be regenerated
  • Studio: Changed naming conventions of imported assets.
  • Studio: The studio and asset compilation process are now running only on 64bits machines

Known Issues ๐Ÿ”—

  • Platforms: Shaders canโ€™t compile due to lack of a proper workflow on other platforms than Windows Desktop (this will be fixed soon)
  • Platforms: Android and iOS platforms are currently not properly supported (this will be fixed soon).
  • Platforms: iOS x64 is not yet supported (this will be added soon)
  • Assets: Reimporting a Model asset (i.e. FBX) might have issues when merging materials
  • Assets: ModelAsset scaling and orientation works only for .FBX, not other formats supported by Assimp library
  • Studio: Scripts are not automatically reloaded by the editor. Closing and re-opening it is needed in order to see new scripts.
  • Studio: Renaming default scene wonโ€™t properly update reference. Please set again the reference in project properties.
  • Studio: DDS images cannot be viewed in the Sprite editor
  • Studio: Collections in assets properties cannot be edited nor displayed in multi-selection

Release

Any comments? You can start ๐Ÿ—จ at GitHub Discussions or Discord.

Edit this page on .