@spearwolf/shadow-objects 0.7.0 → 0.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 +8 -6
- package/bundle.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
_hi! welcome to .._
|
|
2
|
-
# shadow-objects
|
|
2
|
+
# shadow-objects 🧛
|
|
3
3
|
|
|
4
4
|
## Introduction
|
|
5
5
|
|
|
6
6
|
_Shadow-objects_ is a standalone entity component framework.
|
|
7
7
|
The original idea is visualized in this overview:
|
|
8
8
|
|
|
9
|
-

|
|
10
10
|
|
|
11
11
|
> _ents_ is short for latin _"entitatis"_, which translates to _"shadow entities"_
|
|
12
12
|
|
|
@@ -29,10 +29,12 @@ The components are created in the view space. Hierarchical. In your browser. The
|
|
|
29
29
|
> Sorry, at this point there should be a precise and crisp introduction to the concepts of the framework, but unfortunately this is not currently available.
|
|
30
30
|
> Instead of that, a few insights into the implementation will follow
|
|
31
31
|
|
|
32
|
+
TODO ... add documentation here ... !
|
|
33
|
+
|
|
32
34
|
Here is the big class graph overview:
|
|
33
|
-

|
|
34
36
|
|
|
35
37
|
More in-depth docs here:
|
|
36
|
-
- [ShadowEnv](
|
|
37
|
-
- [ComponentContext](
|
|
38
|
-
- [ViewComponent](
|
|
38
|
+
- [ShadowEnv](https://github.com/spearwolf/shadow-objects/blob/main/packages/shadow-objects/src/view/README.md)
|
|
39
|
+
- [ComponentContext](https://github.com/spearwolf/shadow-objects/blob/main/packages/shadow-objects/src/view/ComponentContext.md)
|
|
40
|
+
- [ViewComponent](https://github.com/spearwolf/shadow-objects/blob/main/packages/shadow-objects/src/view/ViewComponent.md)
|
package/bundle.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spearwolf/shadow-objects",
|
|
3
3
|
"description": "a standalone entity-component framework that feels at home in the shadows",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.8.0",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Wolfger Schramm",
|
|
7
7
|
"email": "wolfger@spearwolf.de",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"types": "./src/index.d.ts"
|
|
19
19
|
},
|
|
20
20
|
"./elements.js": {
|
|
21
|
-
"default": "./elements.js"
|
|
21
|
+
"default": "./src/elements.js"
|
|
22
22
|
},
|
|
23
23
|
"./bundle.js": {
|
|
24
24
|
"default": "./bundle.js"
|