@next2d/player 1.2.10 → 1.2.14

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/README.md +17 -16
  2. package/next2d.js +2 -2
  3. package/package.json +2 -1
package/README.md CHANGED
@@ -1,3 +1,7 @@
1
+ Next2D Player
2
+ =============
3
+ <img src="https://next2d.app/assets/img/player/logo.svg" width="200" height="200" alt="Next2D Player Logo">
4
+
1
5
  [![UnitTest](https://github.com/Next2D/Player/actions/workflows/main.yml/badge.svg?branch=develop)](https://github.com/Next2D/Player/actions/workflows/main.yml)
2
6
  [![CodeQL](https://github.com/Next2D/Player/actions/workflows/codeql-analysis.yml/badge.svg?branch=develop)](https://github.com/Next2D/Player/actions/workflows/codeql-analysis.yml)
3
7
  [![release](https://img.shields.io/github/v/release/Next2D/Player)](https://github.com/Next2D/Player/releases)
@@ -13,9 +17,8 @@ Next2D Playerは、JavaScript FlashPlayer「swf2js」から派生したプロジ
13
17
  WebGL、WebGL2を完全にサポートしており、ブラウザやデバイスの互換性に対処したりすることなく
14
18
  リッチでインタラクティブなグラフィック、クロスプラットフォーム アプリケーション、およびゲームを作成できるライブラリです。
15
19
 
16
- [comment]: <> (Next2D Toolを利用することで、NoCodeでイメージしたアニメーションを直感的に作成でき )
17
- [comment]: <> (書き出したJSONデータを、Next2D Playerで簡単に再生および公開が可能です。 )
18
- [comment]: <> (Next2D Toolはインストール不要でアクセスすれば誰でもすぐに使えるWebサービスです。 )
20
+ Next2D NoCode Toolを利用することで、イメージしたアニメーションを直感的に作成でき、書き出したJSONデータを、Next2D Playerで簡単に再生および公開が可能です。
21
+ Next2D NoCode Toolはインストール不要でアクセスすれば誰でもすぐに使えるWebサービスです。
19
22
 
20
23
  2Dエンターテインメント開発を簡単に!快速に!快適に!
21
24
 
@@ -25,11 +28,10 @@ The goal is to provide the fastest 2D engine that works on any device.
25
28
 
26
29
  It fully supports WebGL and WebGL2, and can be used to create rich, interactive graphics and cross-platform applications without having to deal with browser or device compatibility.
27
30
  It is a library that allows you to create rich, interactive graphics, cross-platform applications and games without having to deal with browser or device compatibility.
28
-
29
- [comment]: <> (With the Next2D Tool, you can intuitively create animations as you imagine them in NoCode. )
30
- [comment]: <> (The exported JSON data can be easily played and published using the Next2D Player. )
31
- [comment]: <> (Next2D Tool is a web service that does not require installation and can be used immediately by anyone who accesses it. )
32
-
31
+
32
+ By using the Next2D NoCode Tool, you can intuitively create the animation you have imagined, and the exported JSON data can be easily played and published using the Next2D Player.
33
+ Next2D NoCode Tool is a web service that does not require installation and can be used immediately by anyone who accesses it.
34
+
33
35
  2D entertainment development made easy! Fast! Comfortable!
34
36
 
35
37
 
@@ -38,7 +40,7 @@ It is a library that allows you to create rich, interactive graphics, cross-plat
38
40
  next2d.load("JSON Path...");
39
41
  ```
40
42
 
41
- # Use Program Sample(TODO)
43
+ # Use Program Sample
42
44
  ```javascript
43
45
  const {Loader} = next2d.display;
44
46
  const {URLRequest} = next2d.net;
@@ -47,12 +49,12 @@ const {Event} = next2d.events;
47
49
  // create root MovieClip
48
50
  const root = next2d.createRootMovieClip();
49
51
 
50
- const request = new URLRequest("JSON or Image");
52
+ const request = new URLRequest("JSON path");
51
53
  const loader = new Loader(request);
52
54
 
53
55
  loader
54
56
  .contentLoaderInfo
55
- .addEventListener(Event.COMPLETE, function (event)
57
+ .addEventListener(Event.COMPLETE, (event) =>
56
58
  {
57
59
  const loaderInfo = event.currentTarget;
58
60
 
@@ -60,17 +62,16 @@ loader
60
62
  });
61
63
 
62
64
  loader.load(request);
65
+
63
66
  ```
64
67
  @see [API Documentation](https://next2d.app/docs/player/index.html)
65
68
 
66
69
  # Related sites
67
70
  * [Website](https://next2d.app)
68
71
  * [Player API Documentation](https://next2d.app/docs/player/index.html)
69
- * Next2D Tool(α version to be released in December 2021.)
70
- * Next2D Framework(β version to be released in December 2021.)
71
- * Tips
72
- * Examples
73
- * Tutorial
72
+ * [Next2D NoCode Tool(α version)](https://tool.next2d.app)
73
+ * [Next2D Framework(α version)](https://next2d.app/#framework)
74
+ * [Tutorial](https://next2d.app/tutorials)
74
75
  * [Chat Community(Discord)](https://discord.gg/6c9rv5Uns5)
75
76
 
76
77