Needle Engine 4.2.6
Unity Integration
- Change Needle Engine dependency semver to ensure npm doesnt install 4.3 automatically
Download Unity Plugin
Install from NPM
Changelog on Github
Needle Engine API
Get started
Samples
Download Unity Plugin
Install from NPM
Changelog on Github
Needle Engine API
Get started
Samples
Needle
global scope for usage in commonjs or without a bundler. For example this allows to subscribe to the update event with Needle.onUpdate(ctx => console.log(ctx.time.time))
.@needle-tools/engine@4.2.5
to be updated to @needle-tools/engine@4.3.0
. This makes updating versions more predictable and deliberate using Unity."@needle-tools/engine": "npm:@needle-tools/engine@4.0.0"
will lock the package version to 4.0.0. When using this syntax itβs up to you to manage the installed package version. Download Unity Plugin
Install from NPM
Changelog on Github
Needle Engine API
Get started
Samples
this.context.time.fps
returning the FPS for the current frame (for a more stable FPS value smoothedFps
can be used)multisampling
property which is set to "auto"
by default. By setting multisampling
to a number it will force postprocessing to the configured samples.compress
option did not apply progressive optimization and not produce texture or mesh LODs. Download Unity Plugin
Install from NPM
Changelog on Github
Needle Engine API
Get started
Samples
Download Unity Plugin
Install from NPM
Changelog on Github
Needle Engine API
Get started
Samples
Gizmos
API Download Unity Plugin
Install from NPM
Changelog on Github
Needle Engine API
Get started
Samples
Download Unity Plugin
Install from NPM
Changelog on Github
Needle Engine API
Get started
Samples
skybox-image
and environment-image
when configured in <needle-engine>
web component. Previously it would only start loading the HDRi or EXR images after the root glTF file was finished loading. Now it will start downloading earlier which improves the time until the scene is ready to be displayed. Download Unity Plugin
Install from NPM
Changelog on Github
Needle Engine API
Get started
Samples
Download Unity Plugin
Install from NPM
Changelog on Github
Needle Engine API
Get started
Samples
Gizmos
APIthis.context.time.fps
returning the FPS for the current frame (for a more stable FPS value smoothedFps
can be used)multisampling
property which is set to "auto"
by default. By setting multisampling
to a number it will force postprocessing to the configured samples.<needle-engine>
attributes for skybox-image
and environment-image
does now start earlier. Previously it would only start loading the HDRi or EXR images after the root glTF file was finished loading. Now it will start downloading earlier which improves the time until the scene is ready to be displayed.compress
option did not apply progressive optimization and not produce texture or mesh LODs. Download Unity Plugin
Install from NPM
Changelog on Github
Needle Engine API
Get started
Samples
ObjectUtils.createPrimitive()
now supports scale as arrayObjectUtils.createPrimitive("Cube", { scale: [1, .25, 1] } );
getGamepad(<index>)
function to query a connected gamepad. Example: this.context.input.getGamepad()
lookAtScreenPoint()
function which allows 3D object to look at points in 2D screen coordinates (e.g. your mouse position).import { Behaviour, lookAtScreenPoint } from "@needle-tools/engine";
export class LookAtMouse extends Behaviour {
update() {
lookAtScreenPoint(this.gameObject, this.context.input.mousePosition, this.context.mainCamera);
}
}
contactshadows
attribute now allows you to specify a factor for controlling the darkness/lightness. E.g. <needle-engine contactshadows="1">
will make the shadows appear darker vs. <needle-engine contactshadows=".2">
will make the contact shadow appear lighter.background-image
. E.g. `background-color
attribute was not always applied. E.g. <needle-engine background-color="#ff3333">
autoTarget
does now automatically update the look at target after panning and not when rotating the camera (previously the target would be updated after any input but this resultet in undesireable behaviour when rotating around objects)background-color
attribute then the default scene background color respects the userβs accessibility setting for prefer-dark
or prefer-light
. This means that the background color will be set to a default light or dark value. Download Unity Plugin
Install from NPM
Changelog on Github
Needle Engine API
Get started
Samples