Changelog
Web SDK version changelog
v4.0.3
- Fixed foot tracking when changing the video feed.
- Render error message in case of too many polygons in effect.
- Clean up logging.
v4.0.2
- Fixed foot tracking not working.
- Added texture size uniform that is updated every frame for every texture.
- In shaders it is accessible with
TEXTURE2D_SIZE(sampler_name)
macro.
- In shaders it is accessible with
v4.0.1
- Updated the Scripting API:
- Added the Face Position component class.
- Added trigger events and functions.
- Fixed
Debug.renderText()
default color parameters.
- Added MIME type parameter for video recording.
v4.0.0
- SDK is now written in TypeScript and bundles appropriate
.d.ts
files with classes, types, methods and documentation. - SDK is now available on NPM
npm install deepar
. - Performance improvements.
- 40% smaller JavaScript file and 20% smaller WebAssembly file.
- New API:
setOffscreenRenderingEnabled
- Force rendering on canvas even when tab is not focused.
- Fix memory leak in
processFrameRawPixels
. - Fix caching
u_modelNormal
uniform when using the same material on multiple mesh renderers. More details: https://forum.deepar.ai/t/pbr-shader-web-sdk/71/16 - Breaking changes (detailed read on Migrating to Web SDK v4.0.0:
- DeepAR is now a class and is called with new keyword
let deepAR = new DeepAR({ ... })
. - Constructor parameters:
canvasWidth
andcanvasHeight
- Passing these parameters has no effect anymore. In previous versions of SDK, these parameters would resize the canvas. You could change the canvas size withsetCanvasSize()
method. In new SDK, DeepAR will adapt to the canvas size. So you just need to set the size of the canvas. If canvas is resized, DeepAR will pick it up automatically.numberOfFaces
- This parameter has no effect anymore. DeepAR will track minimum number of faces according to the current configuration of loaded effects.segmentationInfoZip
- Path to the segmentation (background removal) model. This parameter is now changed tosegmentationConfig.modelPath
.deeparWasmPath
- Path to thedeepar.wasm
file.
- Callbacks
- You can provide callbacks in the constructor of the
DeepAR
class in thecallbacks
parameter. - Add, change or remove callbacks via
DeepAR.callbacks
property.
- You can provide callbacks in the constructor of the
- DeepAR is now a class and is called with new keyword
v3.4.5
- Add
setFaceDetectionSensitivity
function. - Add scripting console log API.
v3.4.4
- Introducing foot tracking as a beta* feature!
- Allows you to easily create a shoe try-on app using the DeepAR Web SDK.
- *Foot position component available only in DeepAR Studio 4.0-beta.
- Breaking API changes:
- Removed the
libPath
parameter. - Consequently,
segmentationInfoZip
should contain the full relative path to segmentation.zip.
- Removed the
- Added new Dynamic UVs options in SDK and Studio.
- For dynamic UVs you can choose between
face
andreal
options. face
option's behaviour is the same as it was before - UVs are adjusted for sampling the person’s face from camera texture.real
option adjusts the UVs so that the camera texture is sampled based on the real positions of the mesh vertices.
- For dynamic UVs you can choose between
- Fixed dynamic UVs not working for nodes that are not in face space.
- Dynamic UVs now work for everything:
- Nodes in orthographic layers.
- Nodes in perspective layers.
- Nodes in face space.
- Nodes in face space with parent or child node transformations.
- Nodes not in face space.
- Dynamic UVs now work for everything:
- Fixed undefined symbols in the
FaceData
struct inonFaceTracked
callback function. - Improved segmentation performance.
v3.4.3
- Fix
landmark2D
camera mirror bug - Fix
faceRect
empty bug
v3.4.2
- Greatly improved face tracking performance (up to 100%).
- The
numberOfFaces
parameters is now removed when initializing DeepAR as we can determine the number of faces required in the runtime.
v3.4.1
- Fix for switch effect with path and face parameter not working.
v3.3.0
- Fix crash on shutdown.
- New particle system feature.
v3.2.0
- Improved touch handling. Visit docs or face paint article for more info.
v3.1.3
- No changes on Web SDK
v3.1.2
- Web recording: check out our GitHub quickstart example and our new docs for
startVideoRecording()
andfinishVideoRecording(callback)
methods
v3.1.1
- Bugfix in
processImage(image)
where the image didn't display properly when loading some image formats and changing resolutions. - Fixed scripting subsystem resource leaks
- General refactoring and bugfixes
v3.1.0
- Want to have more control over physics components in runtime? You can now enable/disable entire physics with
enablePhysics
method or show/hide physics collidersshowColliders
method. Also, you can change any physics component parameter through our ChangeParameter API, see documentation - General refactoring and bugfixes
v3.0.0
- New API reference pages
- News features: physics and scripting (check out our guides here)
- Core Engine optimisations and refactor
v2.4
- Improved background segmentation
v2.2.1
- Web background segmentation added
moveGameObject
API method added (check API docs for more detail)- exposed
fireTrigger
API method to trigger custom animation state triggers - Fixed
setVideoElement
call where the main processing loop was not started after the call - Stability and bugfixes
v2.2.0
Major upgrade.
- Added ability to process a single image in addition to the camera stream
- Added ability to change bool and texture parameters to
changeParameter
API - Bugfixes and stability issues
v2.0.0
- Major upgrade
- New segmentation model
- Tracking improvements
- Bugfixes and optimizations
v1.4.6 - 28/02/2020
- Fixed issue with numberOfFaces less than 4
v1.4.5 - 09/10/2019
- Get face data for each face
- Enable multi face tracking during the initialization
v1.4.4 - 04/10/2019
- Change transform API
v1.3.2 - 31/01/2019
- External camera
v1.3.1 - 08/01/2019
- Multi face tracking
setCanvasSize
function to reset the viewport size
v1.3 - 02/01/2019
- Added onFaceTracked
v1.2.5 - 05/11/2018
- Added audio playback
v1.2.4 - 18/10/2018
- Improved API and documentation
- Transition to Web Assembly