babylonjs-toolkit 9.6.2 → 9.8.0

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/README.md CHANGED
@@ -1,13 +1,11 @@
1
1
  # Classic Edition
2
2
  The <a href="https://www.babylontoolkit.com">Babylon Toolkit</a> is a runtime library extension for BabylonJS development that provides modern programming mechanics with a familiar Unity like scripting model to fast track native web game development.
3
3
 
4
- **We recommend using the modern ES6 supported edition**
5
-
6
- <a href="https://www.npmjs.com/package/@babylonjs-toolkit/next">Next Edition (ES6)</a>
4
+ <a href="https://github.com/babylontoolkit/StarterAssets">Demo React Project (TSX)</a>
7
5
  <br/>
8
6
  <a href="https://github.com/BabylonJS/BabylonToolkit/tree/master/Runtime">Browser Library (CDN)</a>
9
7
  <br/>
10
- <a href="https://github.com/codewrxai/Starter-Project">Demo React Project (TSX)</a>
8
+ <a href="https://www.npmjs.com/package/@babylonjs-toolkit/next">Next Edition (ES6)</a>
11
9
 
12
10
 
13
11
  ## Basic Installation
@@ -15,10 +13,9 @@ The <a href="https://www.babylontoolkit.com">Babylon Toolkit</a> is a runtime li
15
13
  npm install babylonjs-toolkit
16
14
  ```
17
15
 
18
-
19
16
  ## Default Installation (UMD)
20
17
  ```bash
21
- npm install babylonjs babylonjs-gui babylonjs-loaders babylonjs-materials babylonjs-toolkit
18
+ npm install babylonjs babylonjs-gui babylonjs-addons babylonjs-loaders babylonjs-materials babylonjs-inspector babylonjs-toolkit
22
19
  ```
23
20
 
24
21
  * Global Import Side Effects (main.ts)
@@ -43,21 +40,3 @@ import 'babylonjs-toolkit';
43
40
  ```
44
41
 
45
42
  Note: The **BABYLON** and **TOOLKIT** namespaces are globally accessible. Navigation is now bundled within the toolkit.
46
-
47
-
48
- ## Navigation Mesh And Pathfinding ([Navigation](https://github.com/MackeyK24/babylon-navigation-mesh))
49
-
50
- Access Navigation from the babylon-toolkit:
51
- ```
52
- TOOLKIT.Navigation
53
- ```
54
-
55
- Or access Navigation from the global window:
56
- ```
57
- window.Navigation
58
- ```
59
-
60
- Or access Navigation using shorthand globals:
61
- ```
62
- Navigation;
63
- ```
@@ -7,7 +7,7 @@ declare namespace TOOLKIT {
7
7
  * @class SceneManager - All rights reserved (c) 2024 Mackey Kinard
8
8
  */
9
9
  class SceneManager {
10
- /** Gets the toolkit framework version string (9.6.2 - R1) */
10
+ /** Gets the toolkit framework version string (9.8.0 - R1) */
11
11
  static get Version(): string;
12
12
  /** Gets the toolkit framework copyright notice */
13
13
  static get Copyright(): string;