@runek/core 0.10.0 → 0.10.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.
Files changed (2) hide show
  1. package/dist/index.js +4 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -788,7 +788,9 @@ function WorldEditor({ data, registry, onChange, ...worldProps }) {
788
788
  ...worldProps,
789
789
  unit: data.unit,
790
790
  gravity: data.gravity,
791
+ ground: data.ground,
791
792
  palette: data.palette,
793
+ fonts: data.fonts,
792
794
  fog: data.fog,
793
795
  time: data.time,
794
796
  timezone: data.timezone,
@@ -1077,7 +1079,9 @@ function WorldRenderer({ data, registry, ...worldProps }) {
1077
1079
  {
1078
1080
  unit: data.unit,
1079
1081
  gravity: data.gravity,
1082
+ ground: data.ground,
1080
1083
  palette: data.palette,
1084
+ fonts: data.fonts,
1081
1085
  fog: data.fog,
1082
1086
  time: data.time,
1083
1087
  timezone: data.timezone,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@runek/core",
3
- "version": "0.10.0",
3
+ "version": "0.10.1",
4
4
  "description": "Core runtime for Runek: the World provider, useWorld, seeded rng, and the component contract.",
5
5
  "license": "MIT",
6
6
  "type": "module",