Skip to content

Commit

Permalink
update 1.2.14
Browse files Browse the repository at this point in the history
  • Loading branch information
ienaga committed Oct 5, 2021
1 parent e5b90c4 commit e330ab6
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 18 deletions.
31 changes: 16 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Next2D Player
=============
<img src="https://next2d.app/assets/img/player/logo.svg" width="200" height="200" alt="Next2D Player Logo">

[![UnitTest](https://github.com/Next2D/Player/actions/workflows/main.yml/badge.svg?branch=develop)](https://github.com/Next2D/Player/actions/workflows/main.yml)
[![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)
[![release](https://img.shields.io/github/v/release/Next2D/Player)](https://github.com/Next2D/Player/releases)
Expand All @@ -13,9 +17,8 @@ Next2D Playerは、JavaScript FlashPlayer「swf2js」から派生したプロジ
WebGL、WebGL2を完全にサポートしており、ブラウザやデバイスの互換性に対処したりすることなく
リッチでインタラクティブなグラフィック、クロスプラットフォーム アプリケーション、およびゲームを作成できるライブラリです。

[comment]: <> (Next2D Toolを利用することで、NoCodeでイメージしたアニメーションを直感的に作成でき )
[comment]: <> (書き出したJSONデータを、Next2D Playerで簡単に再生および公開が可能です。 )
[comment]: <> (Next2D Toolはインストール不要でアクセスすれば誰でもすぐに使えるWebサービスです。 )
Next2D NoCode Toolを利用することで、イメージしたアニメーションを直感的に作成でき、書き出したJSONデータを、Next2D Playerで簡単に再生および公開が可能です。
Next2D NoCode Toolはインストール不要でアクセスすれば誰でもすぐに使えるWebサービスです。

2Dエンターテインメント開発を簡単に!快速に!快適に!

Expand All @@ -25,11 +28,10 @@ The goal is to provide the fastest 2D engine that works on any device.

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.
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.

[comment]: <> (With the Next2D Tool, you can intuitively create animations as you imagine them in NoCode. )
[comment]: <> (The exported JSON data can be easily played and published using the Next2D Player. )
[comment]: <> (Next2D Tool is a web service that does not require installation and can be used immediately by anyone who accesses it. )


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.
Next2D NoCode Tool is a web service that does not require installation and can be used immediately by anyone who accesses it.

2D entertainment development made easy! Fast! Comfortable!


Expand All @@ -38,7 +40,7 @@ It is a library that allows you to create rich, interactive graphics, cross-plat
next2d.load("JSON Path...");
```

# Use Program Sample(TODO)
# Use Program Sample
```javascript
const {Loader} = next2d.display;
const {URLRequest} = next2d.net;
Expand All @@ -47,30 +49,29 @@ const {Event} = next2d.events;
// create root MovieClip
const root = next2d.createRootMovieClip();

const request = new URLRequest("JSON or Image");
const request = new URLRequest("JSON path");
const loader = new Loader(request);

loader
.contentLoaderInfo
.addEventListener(Event.COMPLETE, function (event)
.addEventListener(Event.COMPLETE, (event) =>
{
const loaderInfo = event.currentTarget;

root.addChild(loaderInfo.content);
});

loader.load(request);

```
@see [API Documentation](https://next2d.app/docs/player/index.html)

# Related sites
* [Website](https://next2d.app)
* [Player API Documentation](https://next2d.app/docs/player/index.html)
* Tips
* Examples
* Tutorial
* Next2D Tool(α version to be released in December 2021.)
* [Next2D NoCode Tool(α version)](https://tool.next2d.app)
* [Next2D Framework(α version)](https://next2d.app/#framework)
* [Tutorial](https://next2d.app/tutorials)
* [Chat Community(Discord)](https://discord.gg/6c9rv5Uns5)


Expand Down
4 changes: 2 additions & 2 deletions next2d.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@next2d/player",
"version": "1.2.13",
"version": "1.2.14",
"description": "Next2D Player. Aims to provide a fast 2D player.",
"author": "Toshiyuki Ienaga<[email protected]>",
"license": "MIT",
Expand Down

0 comments on commit e330ab6

Please sign in to comment.