[日本語]
Next2D Playerは、WebGLのハードウェアアクセラレーションでグラフィックス処理負荷を軽減し、OffscreenCanvasのマルチスレッド処理で描画パフォーマンスを向上させています。
ベクター描画、Tweenアニメーション、テキスト、音声、動画など、さまざまな要素をサポートしているので、ゲーム制作、インタラクティブなデータビジュアライゼーション、クリエイティブなウェブアプリケーションなど、豊かな表現が必要とされるプロジェクトで活用が期待できます。
[English]
Next2D Player reduces graphics processing load with WebGL hardware acceleration and improves drawing performance with OffscreenCanvas multi-threaded processing.
With support for vector rendering, tween animation, text, audio, video, and many other elements, Next2D Player can be used for game production, interactive data visualization, creative web applications, and other projects that require rich expression. The software is expected to be used in game production, interactive data visualization, creative web applications and other projects requiring rich expression.
[简体中文]
Next2D Player通过WebGL硬件加速降低了图形处理负载,通过OffscreenCanvas多线程处理提高了绘图性能。
由于支持矢量绘图、Tween动画、文本、音频、视频和许多其他元素,它可用于游戏制作、交互式数据可视化、创意网络应用和其他需要丰富表达的项目。 该软件可用于需要丰富表现力的项目中。
[日本語]
最新ニュースや技術情報は、Twitterの@Next2Dや公式のWebsiteで発信していきますので、チェックしてみてください。
Next2Dがお役に立つようでしたら、プロジェクトをご支援いただければ幸いです。
[English]
Please check @Next2D on Twitter and the official website for the latest news and technical information.
If Next2D is useful to you, we hope you will support our project.
[简体中文]
请在Twitter上查看@Next2D和官方网站,了解最新的新闻和技术信息。
如果Next2D对你有用,我们希望你能支持我们的项目。
next2d.load("Path to JSON output from Animation Tool");
const { Loader } = next2d.display;
const { URLRequest } = next2d.net;
const { Event } = next2d.events;
// create root MovieClip
const start = async () =>
{
const request = new URLRequest("JSON path");
const loader = new Loader();
await loader.load(request);
const root = await next2d.createRootMovieClip();
root.addChild(loader.contentLoaderInfo.content);
};
start();
import { Loader } from "@next2d/display";
import { URLRequest } from "@next2d/net";
import { Event } from "@next2d/events";
// create root MovieClip
const start = async (): Promise<void> =>
{
const request = new URLRequest("JSON path");
const loader = new Loader();
await loader.load(request);
const root = await next2d.createRootMovieClip();
root.addChild(loader.content);
};
start();
[日本語]
プロパティ名 | 型 | デフォルト値 | 説明 |
---|---|---|---|
fullScreen |
boolean | false | Stageクラスで設定した幅と高さを超えて画面全体に描画されます。 |
tagId |
string | empty | IDを指定すると、指定したIDのエレメント内で描画を行います。 |
bgColor |
string | "transparent" | 背景色を16進数で指定できます。デフォルトは無色透明です。 |
[English]
name | type | default | description |
---|---|---|---|
fullScreen |
boolean | false | The entire screen is drawn beyond the width and height set in the Stage class. |
tagId |
string | empty | When an ID is specified, drawing is performed within the element of the specified ID. |
bgColor |
string | "transparent" | You can specify a background color in hexadecimal. The default is colorless. |
[简体中文]
名称 | 值类型 | 默认值 | 说明 |
---|---|---|---|
fullScreen |
boolean | false | 整个屏幕的绘制超出了Stage类中设置的宽度和高度。 |
tagId |
string | empty | 当一个ID被指定时,在指定ID的元素内进行绘图。 |
bgColor |
string | "transparent" | 你可以指定一个十六进制的背景颜色。默认为无色。 |
This project is licensed under the MIT License - see the LICENSE file for details.