@onerjs/core 8.49.8 → 8.50.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Physics/v2/Plugins/havokPlugin.d.ts +4 -0
- package/Physics/v2/Plugins/havokPlugin.js +224 -0
- package/Physics/v2/Plugins/havokPlugin.js.map +1 -1
- package/Physics/v2/physicsAggregate.d.ts +5 -1
- package/Physics/v2/physicsAggregate.js +4 -5
- package/Physics/v2/physicsAggregate.js.map +1 -1
- package/package.json +1 -1
|
@@ -70,6 +70,10 @@ export declare class HavokPlugin implements IPhysicsEnginePluginV2 {
|
|
|
70
70
|
* Name of the plugin
|
|
71
71
|
*/
|
|
72
72
|
name: string;
|
|
73
|
+
/**
|
|
74
|
+
* Indicates whether the plugin has been disposed
|
|
75
|
+
*/
|
|
76
|
+
protected _isDisposed: boolean;
|
|
73
77
|
/**
|
|
74
78
|
* We only have a single raycast in-flight right now
|
|
75
79
|
*/
|