@next2d/player 1.4.8 → 1.4.12
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.ja.md +5 -5
- package/README.md +4 -4
- package/next2d.js +2 -2
- package/package.json +1 -1
package/README.ja.md
CHANGED
|
@@ -55,12 +55,12 @@ loader.load(request);
|
|
|
55
55
|
|
|
56
56
|
## Option settings
|
|
57
57
|
|
|
58
|
-
|
|
|
58
|
+
| プロパティ名 | 型 | デフォルト値 | 説明 |
|
|
59
59
|
| --- | --- | --- | --- |
|
|
60
|
-
| `base` | string | empty |
|
|
61
|
-
| `fullScreen` | boolean | false |
|
|
62
|
-
| `tagId` | string | empty |
|
|
63
|
-
| `bgColor` | array [R,G,B,A] or false | false |
|
|
60
|
+
| `base` | string | empty | 相対パスでJSONを取得する場合、ここで設定したURLがrootとして適用されます。絶対パスの場合はここで設定したURLは適用されません。 |
|
|
61
|
+
| `fullScreen` | boolean | false | Stageクラスで設定した幅と高さを超えて画面全体に描画されます。 |
|
|
62
|
+
| `tagId` | string | empty | IDを指定すると、指定したIDのエレメント内で描画を行います。 |
|
|
63
|
+
| `bgColor` | array [R,G,B,A] or false | false | 背景色の[R,G,B,A]の配列は0~255で指定できます。falseは無色透明です。 |
|
|
64
64
|
|
|
65
65
|
## Related sites
|
|
66
66
|
* [Website](https://next2d.app)
|
package/README.md
CHANGED
|
@@ -58,10 +58,10 @@ loader.load(request);
|
|
|
58
58
|
|
|
59
59
|
| name | value | default | description |
|
|
60
60
|
| --- | --- | --- | --- |
|
|
61
|
-
| `base` | string | empty |
|
|
62
|
-
| `fullScreen` | boolean | false |
|
|
63
|
-
| `tagId` | string | empty |
|
|
64
|
-
| `bgColor` |
|
|
61
|
+
| `base` | string | empty | When acquiring JSON by relative path, the URL set here will be applied as the root. For absolute paths, the URL set here will not be applied. |
|
|
62
|
+
| `fullScreen` | boolean | false | It will be drawn on the entire screen beyond the width and height set in the Stage class. |
|
|
63
|
+
| `tagId` | string | empty | When an ID is specified, drawing will be performed within the element with the specified ID. |
|
|
64
|
+
| `bgColor` | The [R,G,B,A] array of background colors can be specified from 0 to 255. false is colorless and transparent. |
|
|
65
65
|
|
|
66
66
|
## Related sites
|
|
67
67
|
* [Website](https://next2d.app)
|