@mirage-engine/painter 0.2.0 → 0.2.2

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 (3) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/README.md +18 -7
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @mirage-engine/painter
2
2
 
3
+ ## 0.2.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 59d63ed: liking npm url for awesome
8
+
9
+ ## 0.2.1
10
+
11
+ ### Patch Changes
12
+
13
+ - 6d51113: update README image
14
+
3
15
  ## 0.2.0
4
16
 
5
17
  ### Minor Changes
package/README.md CHANGED
@@ -1,6 +1,17 @@
1
- # @mirage-engine/painter
1
+ <p align="center">
2
+ <a href="https://www.npmjs.com/package/mirage-engine">
3
+ <img src="https://raw.githubusercontent.com/dltldn333/MirageEngine/main/.github/assets/mirage-engine.png" width="300px">
4
+ </a>
5
+ </p>
6
+
7
+ <p align="center">
8
+ <a href="https://www.npmjs.com/package/@mirage-engine/painter"><img src="https://img.shields.io/npm/v/@mirage-engine/painter.svg?color=black"></a>
9
+ <a href="https://www.npmjs.org/package/@mirage-engine/painter"><img src="https://img.shields.io/npm/dm/@mirage-engine/painter.svg?color=black"></a>
10
+ <a href="https://opensource.org/licenses/MIT"><img src="https://img.shields.io/badge/License-MIT-yellow.svg?color=black"></a>
11
+ <a href="https://www.typescriptlang.org/"><img src="https://img.shields.io/badge/TypeScript-Ready-blue.svg?color=black"></a>
12
+ </p>
2
13
 
3
- [![npm](https://img.shields.io/npm/v/@mirage-engine/painter.svg?color=black)](https://www.npmjs.com/package/@mirage-engine/painter)
14
+ # @mirage-engine/painter
4
15
 
5
16
  A standalone text & style texture generator for Three.js.
6
17
 
@@ -11,11 +22,11 @@ import { Painter } from "@mirage-engine/painter";
11
22
  const geometry = new THREE.PlaneGeometry(1, 1);
12
23
 
13
24
  const styles = {
14
- backgroundColor: "#ff0000",
15
- borderColor: "#000000",
16
- borderWidth: 2,
17
- borderRadius: 5,
18
- }
25
+ backgroundColor: "#ff0000",
26
+ borderColor: "#000000",
27
+ borderWidth: 2,
28
+ borderRadius: 5,
29
+ };
19
30
 
20
31
  const material = Painter.create(
21
32
  "BOX",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mirage-engine/painter",
3
- "version": "0.2.0",
3
+ "version": "0.2.2",
4
4
  "main": "src/index.ts",
5
5
  "types": "src/index.ts",
6
6
  "peerDependencies": {