arcanumcube 0.1.2 → 0.1.4
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 +4 -1
- package/dist/cjs/{arcanumcube.cjs → arcanumcube.js} +895 -70
- package/dist/cjs/core.js +733 -0
- package/dist/esm/arcanumcube.module.js +893 -69
- package/dist/esm/arcanumcube.module.min.js +5 -5
- package/dist/esm/core.module.js +686 -0
- package/dist/esm/core.module.min.js +4 -0
- package/dist/index.html +4 -5
- package/dist/types/skins.d.ts +1 -0
- package/dist/types/webgl.d.ts +12 -9
- package/package.json +16 -5
package/README.md
CHANGED
|
@@ -4,9 +4,12 @@ Arcanum Cube Arcanum Cube is a WebGL cube puzzle module written in TypeScript. Y
|
|
|
4
4
|
|
|
5
5
|
## Demo Page
|
|
6
6
|
|
|
7
|
-
- [
|
|
7
|
+
- [Example1](https://mawxiwtz.github.io/arcanumcube/) \
|
|
8
8
|
Rotation only
|
|
9
9
|
|
|
10
|
+
- [Example2](https://mawxiwtz.github.io/arcanumcube-demo/) \
|
|
11
|
+
Demo of playing and solving with AI
|
|
12
|
+
|
|
10
13
|
## Installation
|
|
11
14
|
|
|
12
15
|
You can add arcanumcube as an npm dependency:
|