Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@akashic-extension/akashic-tile
Advanced tools
akashic-tile は、Akashic Engine用のタイルマップ描画ライブラリです。
例えば幅32、高さ32の画像を敷き詰めたマップチップ画像のアセット mapchipImage
を持つシーン scene
がある時、
マップチップを敷き詰めた画像(タイルマップ)を表示するエンティティを生成できます。
var tile = new at.Tile({
scene: scene,
src: scene.assets.mapchipImage,
tileWidth: 32,
tileHeight: 32,
tileData: [
[0, 1, 1, 0],
[1, 2, 2, 1],
[0, 0, 1, 0]
]
});
scene.append(tile);
ここで tileData
の内容は、マップチップのインデックスです。
マップチップのインデックスとは、マップチップ画像の各マップチップに対して、左上を0として順に振られた番号です。
すなわちインデックス0はマップチップ画像の一番左上の幅32、高さ32の部分を表します。
インデックス1はその右隣の幅32、高さ32の部分を表します。
akashic-cliをインストールした後、
akashic install @akashic-extension/akashic-tile
でインストールできます。コンテンツからは、
var at = require("@akashic-extension/akashic-tile");
で利用してください。 詳細な利用方法については、以下を参照してください。
akashic-tileはTypeScriptで書かれたライブラリであるため、ビルドにはnode.jsが必要です。
npm run build
によりビルドできます。
npm install
npm run build
本リポジトリは MIT License の元で公開されています。 詳しくは LICENSE をご覧ください。
ただし、画像ファイルおよび音声ファイルは CC BY 2.1 JP の元で公開されています。
FAQs
Tilemap library for Akashic Engine
The npm package @akashic-extension/akashic-tile receives a total of 1 weekly downloads. As such, @akashic-extension/akashic-tile popularity was classified as not popular.
We found that @akashic-extension/akashic-tile demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.