adjusts on asset, only tiles and sounds

This commit is contained in:
bQUARKz 2026-03-17 18:42:25 +00:00
parent 64e65dcd44
commit 5b2e2b023f
Signed by: bquarkz
SSH Key Fingerprint: SHA256:Z7dgqoglWwoK6j6u4QC87OveEq74WOhFN+gitsxtkf8
27 changed files with 132 additions and 177 deletions

View File

@ -58,7 +58,7 @@ Rules:
Examples: Examples:
- `image_bank` - `tile_bank`
- `sound_bank` - `sound_bank`
## Inputs ## Inputs

View File

@ -3,8 +3,7 @@ package p.packer.messages.assets;
import java.util.Locale; import java.util.Locale;
public enum AssetFamilyCatalog { public enum AssetFamilyCatalog {
IMAGE_BANK("image_bank"), TILE_BANK("tile_bank"),
PALETTE_BANK("palette_bank"),
SOUND_BANK("sound_bank"), SOUND_BANK("sound_bank"),
UNKNOWN("unknown"); UNKNOWN("unknown");

View File

@ -4,10 +4,8 @@ import java.util.List;
import java.util.Locale; import java.util.Locale;
public enum OutputFormatCatalog { public enum OutputFormatCatalog {
TILES_INDEXED_V1(AssetFamilyCatalog.IMAGE_BANK, "TILES/indexed_v1", "TILES/indexed_v1"), TILES_INDEXED_V1(AssetFamilyCatalog.TILE_BANK, "TILES/indexed_v1", "TILES/indexed_v1"),
PALETTE_INDEXED_V1(AssetFamilyCatalog.PALETTE_BANK, "PALETTE/indexed_v1", "PALETTE/indexed_v1"), SOUND_V1(AssetFamilyCatalog.SOUND_BANK, "SOUND/v1", "SOUND/v1"),
SOUND_BANK_V1(AssetFamilyCatalog.SOUND_BANK, "SOUND/bank_v1", "SOUND/bank_v1"),
AUDIO_PCM_V1(AssetFamilyCatalog.SOUND_BANK, "AUDIO/pcm_v1", "AUDIO/pcm_v1"),
UNKNOWN(AssetFamilyCatalog.UNKNOWN, "unknown", "Unknown"); UNKNOWN(AssetFamilyCatalog.UNKNOWN, "unknown", "Unknown");
private final AssetFamilyCatalog assetFamily; private final AssetFamilyCatalog assetFamily;

View File

@ -105,7 +105,7 @@ public final class PackerAssetDeclarationParser {
diagnostics.add(new PackerDiagnostic( diagnostics.add(new PackerDiagnostic(
PackerDiagnosticSeverity.ERROR, PackerDiagnosticSeverity.ERROR,
PackerDiagnosticCategory.STRUCTURAL, PackerDiagnosticCategory.STRUCTURAL,
"Field 'type' must be one of: image_bank, palette_bank, sound_bank.", "Field 'type' must be one of: tile_bank, palette_bank, sound_bank.",
manifestPath, manifestPath,
true)); true));
return null; return null;

View File

@ -61,7 +61,7 @@ final class PackerOutputContractCatalog {
"16", "16",
true, true,
List.of("8", "16", "32"))); List.of("8", "16", "32")));
case SOUND_BANK_V1, AUDIO_PCM_V1 -> List.of( case SOUND_V1 -> List.of(
new PackerCodecConfigurationField( new PackerCodecConfigurationField(
"sample_rate", "sample_rate",
"Frame Rate", "Frame Rate",

View File

@ -88,7 +88,7 @@ final class FileSystemPackerWorkspaceServiceTest {
project(projectRoot), project(projectRoot),
"ui/new-atlas", "ui/new-atlas",
"new_atlas", "new_atlas",
AssetFamilyCatalog.IMAGE_BANK, AssetFamilyCatalog.TILE_BANK,
OutputFormatCatalog.TILES_INDEXED_V1, OutputFormatCatalog.TILES_INDEXED_V1,
OutputCodecCatalog.NONE, OutputCodecCatalog.NONE,
true)); true));
@ -117,7 +117,7 @@ final class FileSystemPackerWorkspaceServiceTest {
project(projectRoot), project(projectRoot),
"ui/new-atlas", "ui/new-atlas",
"new_atlas", "new_atlas",
AssetFamilyCatalog.IMAGE_BANK, AssetFamilyCatalog.TILE_BANK,
OutputFormatCatalog.TILES_INDEXED_V1, OutputFormatCatalog.TILES_INDEXED_V1,
OutputCodecCatalog.NONE, OutputCodecCatalog.NONE,
true)); true));
@ -150,7 +150,7 @@ final class FileSystemPackerWorkspaceServiceTest {
project(projectRoot), project(projectRoot),
"ui/new-atlas", "ui/new-atlas",
"new_atlas", "new_atlas",
AssetFamilyCatalog.IMAGE_BANK, AssetFamilyCatalog.TILE_BANK,
OutputFormatCatalog.TILES_INDEXED_V1, OutputFormatCatalog.TILES_INDEXED_V1,
OutputCodecCatalog.NONE, OutputCodecCatalog.NONE,
true)); true));
@ -445,7 +445,7 @@ final class FileSystemPackerWorkspaceServiceTest {
project(projectRoot), project(projectRoot),
"ui/delete-me", "ui/delete-me",
"delete_me", "delete_me",
AssetFamilyCatalog.IMAGE_BANK, AssetFamilyCatalog.TILE_BANK,
OutputFormatCatalog.TILES_INDEXED_V1, OutputFormatCatalog.TILES_INDEXED_V1,
OutputCodecCatalog.NONE, OutputCodecCatalog.NONE,
false)); false));
@ -473,7 +473,7 @@ final class FileSystemPackerWorkspaceServiceTest {
project(projectRoot), project(projectRoot),
"ui/source-atlas", "ui/source-atlas",
"source_atlas", "source_atlas",
AssetFamilyCatalog.IMAGE_BANK, AssetFamilyCatalog.TILE_BANK,
OutputFormatCatalog.TILES_INDEXED_V1, OutputFormatCatalog.TILES_INDEXED_V1,
OutputCodecCatalog.NONE, OutputCodecCatalog.NONE,
true)); true));
@ -540,7 +540,7 @@ final class FileSystemPackerWorkspaceServiceTest {
project(projectRoot), project(projectRoot),
"ui/source", "ui/source",
"source", "source",
AssetFamilyCatalog.IMAGE_BANK, AssetFamilyCatalog.TILE_BANK,
OutputFormatCatalog.TILES_INDEXED_V1, OutputFormatCatalog.TILES_INDEXED_V1,
OutputCodecCatalog.NONE, OutputCodecCatalog.NONE,
false)); false));
@ -548,7 +548,7 @@ final class FileSystemPackerWorkspaceServiceTest {
project(projectRoot), project(projectRoot),
"ui/target", "ui/target",
"target", "target",
AssetFamilyCatalog.IMAGE_BANK, AssetFamilyCatalog.TILE_BANK,
OutputFormatCatalog.TILES_INDEXED_V1, OutputFormatCatalog.TILES_INDEXED_V1,
OutputCodecCatalog.NONE, OutputCodecCatalog.NONE,
false)); false));
@ -615,8 +615,8 @@ final class FileSystemPackerWorkspaceServiceTest {
project(projectRoot), project(projectRoot),
"audio/bad", "audio/bad",
"bad_asset", "bad_asset",
AssetFamilyCatalog.IMAGE_BANK, AssetFamilyCatalog.TILE_BANK,
OutputFormatCatalog.SOUND_BANK_V1, OutputFormatCatalog.SOUND_V1,
OutputCodecCatalog.NONE, OutputCodecCatalog.NONE,
false)); false));
@ -635,7 +635,7 @@ final class FileSystemPackerWorkspaceServiceTest {
project(projectRoot), project(projectRoot),
"ui/atlas-a", "ui/atlas-a",
"atlas_a", "atlas_a",
AssetFamilyCatalog.IMAGE_BANK, AssetFamilyCatalog.TILE_BANK,
OutputFormatCatalog.TILES_INDEXED_V1, OutputFormatCatalog.TILES_INDEXED_V1,
OutputCodecCatalog.NONE, OutputCodecCatalog.NONE,
true))); true)));
@ -643,7 +643,7 @@ final class FileSystemPackerWorkspaceServiceTest {
project(projectRoot), project(projectRoot),
"ui/atlas-b", "ui/atlas-b",
"atlas_b", "atlas_b",
AssetFamilyCatalog.IMAGE_BANK, AssetFamilyCatalog.TILE_BANK,
OutputFormatCatalog.TILES_INDEXED_V1, OutputFormatCatalog.TILES_INDEXED_V1,
OutputCodecCatalog.NONE, OutputCodecCatalog.NONE,
false))); false)));

View File

@ -28,7 +28,7 @@ final class PackerAssetDeclarationParserTest {
assertEquals(1, result.declaration().schemaVersion()); assertEquals(1, result.declaration().schemaVersion());
assertEquals("fixture-uuid-1", result.declaration().assetUuid()); assertEquals("fixture-uuid-1", result.declaration().assetUuid());
assertEquals("ui_atlas", result.declaration().name()); assertEquals("ui_atlas", result.declaration().name());
assertEquals(AssetFamilyCatalog.IMAGE_BANK, result.declaration().assetFamily()); assertEquals(AssetFamilyCatalog.TILE_BANK, result.declaration().assetFamily());
assertEquals("TILES/indexed_v1", result.declaration().outputFormat().displayName()); assertEquals("TILES/indexed_v1", result.declaration().outputFormat().displayName());
assertEquals(OutputCodecCatalog.NONE, result.declaration().outputCodec()); assertEquals(OutputCodecCatalog.NONE, result.declaration().outputCodec());
assertTrue(result.declaration().preloadEnabled()); assertTrue(result.declaration().preloadEnabled());
@ -69,7 +69,7 @@ final class PackerAssetDeclarationParserTest {
"schema_version": 1, "schema_version": 1,
"asset_uuid": "uuid-outside", "asset_uuid": "uuid-outside",
"name": "bad_asset", "name": "bad_asset",
"type": "image_bank", "type": "tile_bank",
"inputs": { "sprites": ["../outside.png"] }, "inputs": { "sprites": ["../outside.png"] },
"output": { "format": "TILES/indexed_v1", "codec": "NONE" }, "output": { "format": "TILES/indexed_v1", "codec": "NONE" },
"preload": { "enabled": true } "preload": { "enabled": true }

View File

@ -1,6 +1,6 @@
{ {
"schema_version": 1, "schema_version": 1,
"type": "image_bank", "type": "tile_bank",
"inputs": "wrong", "inputs": "wrong",
"output": { "output": {
"codec": "" "codec": ""

View File

@ -2,7 +2,7 @@
"schema_version": 9, "schema_version": 9,
"asset_uuid": "future-uuid-1", "asset_uuid": "future-uuid-1",
"name": "future_asset", "name": "future_asset",
"type": "image_bank", "type": "tile_bank",
"inputs": { "inputs": {
"sprites": ["future.png"] "sprites": ["future.png"]
}, },

View File

@ -2,7 +2,7 @@
"schema_version": 1, "schema_version": 1,
"asset_uuid": "fixture-uuid-1", "asset_uuid": "fixture-uuid-1",
"name": "ui_atlas", "name": "ui_atlas",
"type": "image_bank", "type": "tile_bank",
"inputs": { "inputs": {
"sprites": ["sprites/confirm.png"] "sprites": ["sprites/confirm.png"]
}, },

View File

@ -1,6 +1,6 @@
{ {
"schema_version": 1, "schema_version": 1,
"type": "image_bank", "type": "tile_bank",
"inputs": "wrong", "inputs": "wrong",
"output": { "output": {
"codec": "" "codec": ""

View File

@ -2,7 +2,7 @@
"schema_version": 1, "schema_version": 1,
"asset_uuid": "uuid-1", "asset_uuid": "uuid-1",
"name": "ui_atlas", "name": "ui_atlas",
"type": "image_bank", "type": "tile_bank",
"inputs": { "inputs": {
"sprites": ["sprites/confirm.png"] "sprites": ["sprites/confirm.png"]
}, },

View File

@ -139,7 +139,7 @@ public enum I18n {
ASSETS_LABEL_BUILD_PARTICIPATION("assets.label.buildParticipation"), ASSETS_LABEL_BUILD_PARTICIPATION("assets.label.buildParticipation"),
ASSETS_LABEL_ASSET_ID("assets.label.assetId"), ASSETS_LABEL_ASSET_ID("assets.label.assetId"),
ASSETS_LABEL_TYPE("assets.label.type"), ASSETS_LABEL_TYPE("assets.label.type"),
ASSETS_TYPE_IMAGE_BANK("assets.type.imageBank"), ASSETS_TYPE_TILE_BANK("assets.type.tileBank"),
ASSETS_TYPE_PALETTE_BANK("assets.type.paletteBank"), ASSETS_TYPE_PALETTE_BANK("assets.type.paletteBank"),
ASSETS_TYPE_SOUND_BANK("assets.type.soundBank"), ASSETS_TYPE_SOUND_BANK("assets.type.soundBank"),
ASSETS_TYPE_UNKNOWN("assets.type.unknown"), ASSETS_TYPE_UNKNOWN("assets.type.unknown"),

View File

@ -97,8 +97,7 @@ public final class AssetDetailsUiSupport {
public static String typeLabel(AssetFamilyCatalog assetFamily) { public static String typeLabel(AssetFamilyCatalog assetFamily) {
return switch (assetFamily) { return switch (assetFamily) {
case IMAGE_BANK -> Container.i18n().text(I18n.ASSETS_TYPE_IMAGE_BANK); case TILE_BANK -> Container.i18n().text(I18n.ASSETS_TYPE_TILE_BANK);
case PALETTE_BANK -> Container.i18n().text(I18n.ASSETS_TYPE_PALETTE_BANK);
case SOUND_BANK -> Container.i18n().text(I18n.ASSETS_TYPE_SOUND_BANK); case SOUND_BANK -> Container.i18n().text(I18n.ASSETS_TYPE_SOUND_BANK);
case UNKNOWN -> Container.i18n().text(I18n.ASSETS_TYPE_UNKNOWN); case UNKNOWN -> Container.i18n().text(I18n.ASSETS_TYPE_UNKNOWN);
}; };
@ -106,8 +105,7 @@ public final class AssetDetailsUiSupport {
public static String typeChipTone(AssetFamilyCatalog assetFamily) { public static String typeChipTone(AssetFamilyCatalog assetFamily) {
return switch (assetFamily) { return switch (assetFamily) {
case IMAGE_BANK -> "assets-details-chip-image"; case TILE_BANK -> "assets-details-chip-image";
case PALETTE_BANK -> "assets-details-chip-palette";
case SOUND_BANK -> "assets-details-chip-audio"; case SOUND_BANK -> "assets-details-chip-audio";
case UNKNOWN -> "assets-details-chip-generic"; case UNKNOWN -> "assets-details-chip-generic";
}; };

View File

@ -112,8 +112,7 @@ public final class AssetListItemControl extends VBox {
private String assetRowToneClass(AssetFamilyCatalog assetFamily) { private String assetRowToneClass(AssetFamilyCatalog assetFamily) {
return switch (assetFamily) { return switch (assetFamily) {
case IMAGE_BANK -> "assets-workspace-asset-row-tone-image"; case TILE_BANK -> "assets-workspace-asset-row-tone-image";
case PALETTE_BANK -> "assets-workspace-asset-row-tone-palette";
case SOUND_BANK -> "assets-workspace-asset-row-tone-audio"; case SOUND_BANK -> "assets-workspace-asset-row-tone-audio";
default -> "assets-workspace-asset-row-tone-generic"; default -> "assets-workspace-asset-row-tone-generic";
}; };
@ -121,8 +120,7 @@ public final class AssetListItemControl extends VBox {
private String assetNameToneClass(AssetFamilyCatalog assetFamily) { private String assetNameToneClass(AssetFamilyCatalog assetFamily) {
return switch (assetFamily) { return switch (assetFamily) {
case IMAGE_BANK -> "assets-workspace-asset-name-tone-image"; case TILE_BANK -> "assets-workspace-asset-name-tone-image";
case PALETTE_BANK -> "assets-workspace-asset-name-tone-palette";
case SOUND_BANK -> "assets-workspace-asset-name-tone-audio"; case SOUND_BANK -> "assets-workspace-asset-name-tone-audio";
default -> "assets-workspace-asset-name-tone-generic"; default -> "assets-workspace-asset-name-tone-generic";
}; };

View File

@ -130,7 +130,7 @@ assets.label.registration=Registration
assets.label.buildParticipation=Build Participation assets.label.buildParticipation=Build Participation
assets.label.assetId=Asset ID assets.label.assetId=Asset ID
assets.label.type=Type assets.label.type=Type
assets.type.imageBank=Image Bank assets.type.tileBank=Tile Bank
assets.type.paletteBank=Palette Bank assets.type.paletteBank=Palette Bank
assets.type.soundBank=Sound Bank assets.type.soundBank=Sound Bank
assets.type.unknown=Unknown assets.type.unknown=Unknown

View File

@ -408,15 +408,6 @@
-fx-background-color: #21192c; -fx-background-color: #21192c;
} }
.assets-workspace-asset-row-tone-palette {
-fx-background-color: #1d1711;
-fx-border-color: #9c6d2b;
}
.assets-workspace-asset-row-tone-palette:hover {
-fx-background-color: #281f15;
}
.assets-workspace-asset-row-tone-text { .assets-workspace-asset-row-tone-text {
-fx-background-color: #122019; -fx-background-color: #122019;
-fx-border-color: #3e8763; -fx-border-color: #3e8763;
@ -449,10 +440,6 @@
-fx-text-fill: #dcbfff; -fx-text-fill: #dcbfff;
} }
.assets-workspace-asset-name-tone-palette {
-fx-text-fill: #ffd69a;
}
.assets-workspace-asset-name-tone-text { .assets-workspace-asset-name-tone-text {
-fx-text-fill: #aee8c5; -fx-text-fill: #aee8c5;
} }
@ -659,12 +646,6 @@
-fx-text-fill: #d7f0ff; -fx-text-fill: #d7f0ff;
} }
.assets-details-chip-palette {
-fx-background-color: #2f2121;
-fx-border-color: #ff9b7a;
-fx-text-fill: #ffe2d7;
}
.assets-details-chip-audio { .assets-details-chip-audio {
-fx-background-color: #1e2741; -fx-background-color: #1e2741;
-fx-border-color: #85a8ff; -fx-border-color: #85a8ff;

View File

@ -1,4 +1,99 @@
[ { [ {
"source" : "Assets",
"message" : "7 assets loaded",
"severity" : "SUCCESS",
"sticky" : false
}, {
"source" : "Assets",
"message" : "Discovered asset: bla",
"severity" : "INFO",
"sticky" : false
}, {
"source" : "Assets",
"message" : "Discovered asset: one-more-atlas",
"severity" : "INFO",
"sticky" : false
}, {
"source" : "Assets",
"message" : "Discovered asset: ui_atlas",
"severity" : "INFO",
"sticky" : false
}, {
"source" : "Assets",
"message" : "Discovered asset: one-more-atlas",
"severity" : "INFO",
"sticky" : false
}, {
"source" : "Assets",
"message" : "Discovered asset: bbb2",
"severity" : "INFO",
"sticky" : false
}, {
"source" : "Assets",
"message" : "Discovered asset: ui_atlas",
"severity" : "INFO",
"sticky" : false
}, {
"source" : "Assets",
"message" : "Discovered asset: Bigode",
"severity" : "INFO",
"sticky" : false
}, {
"source" : "Assets",
"message" : "Asset scan started",
"severity" : "INFO",
"sticky" : false
}, {
"source" : "Assets",
"message" : "7 assets loaded",
"severity" : "SUCCESS",
"sticky" : false
}, {
"source" : "Assets",
"message" : "Asset scan diagnostics updated.",
"severity" : "INFO",
"sticky" : false
}, {
"source" : "Assets",
"message" : "Discovered asset: sound",
"severity" : "INFO",
"sticky" : false
}, {
"source" : "Assets",
"message" : "Discovered asset: one-more-atlas",
"severity" : "INFO",
"sticky" : false
}, {
"source" : "Assets",
"message" : "Discovered asset: ui_atlas",
"severity" : "INFO",
"sticky" : false
}, {
"source" : "Assets",
"message" : "Discovered asset: one-more-atlas",
"severity" : "INFO",
"sticky" : false
}, {
"source" : "Assets",
"message" : "Discovered asset: bbb2",
"severity" : "INFO",
"sticky" : false
}, {
"source" : "Assets",
"message" : "Discovered asset: ui_atlas",
"severity" : "INFO",
"sticky" : false
}, {
"source" : "Assets",
"message" : "Discovered asset: Bigode",
"severity" : "INFO",
"sticky" : false
}, {
"source" : "Assets",
"message" : "Asset scan started",
"severity" : "INFO",
"sticky" : false
}, {
"source" : "Assets", "source" : "Assets",
"message" : "8 assets loaded", "message" : "8 assets loaded",
"severity" : "SUCCESS", "severity" : "SUCCESS",
@ -2403,99 +2498,4 @@
"message" : "7 assets loaded", "message" : "7 assets loaded",
"severity" : "SUCCESS", "severity" : "SUCCESS",
"sticky" : false "sticky" : false
}, {
"source" : "Assets",
"message" : "Discovered asset: test",
"severity" : "INFO",
"sticky" : false
}, {
"source" : "Assets",
"message" : "Discovered asset: one-more-atlas",
"severity" : "INFO",
"sticky" : false
}, {
"source" : "Assets",
"message" : "Discovered asset: ui_atlas",
"severity" : "INFO",
"sticky" : false
}, {
"source" : "Assets",
"message" : "Discovered asset: bla",
"severity" : "INFO",
"sticky" : false
}, {
"source" : "Assets",
"message" : "Discovered asset: one-more-atlas",
"severity" : "INFO",
"sticky" : false
}, {
"source" : "Assets",
"message" : "Discovered asset: ui_atlas",
"severity" : "INFO",
"sticky" : false
}, {
"source" : "Assets",
"message" : "Discovered asset: Bigode",
"severity" : "INFO",
"sticky" : false
}, {
"source" : "Assets",
"message" : "Asset scan started",
"severity" : "INFO",
"sticky" : false
}, {
"source" : "Assets",
"message" : "7 assets loaded",
"severity" : "SUCCESS",
"sticky" : false
}, {
"source" : "Assets",
"message" : "Discovered asset: test",
"severity" : "INFO",
"sticky" : false
}, {
"source" : "Assets",
"message" : "Discovered asset: one-more-atlas",
"severity" : "INFO",
"sticky" : false
}, {
"source" : "Assets",
"message" : "Discovered asset: ui_atlas",
"severity" : "INFO",
"sticky" : false
}, {
"source" : "Assets",
"message" : "Discovered asset: bla",
"severity" : "INFO",
"sticky" : false
}, {
"source" : "Assets",
"message" : "Discovered asset: one-more-atlas",
"severity" : "INFO",
"sticky" : false
}, {
"source" : "Assets",
"message" : "Discovered asset: ui_atlas",
"severity" : "INFO",
"sticky" : false
}, {
"source" : "Assets",
"message" : "Discovered asset: Bigode",
"severity" : "INFO",
"sticky" : false
}, {
"source" : "Assets",
"message" : "Asset scan started",
"severity" : "INFO",
"sticky" : false
}, {
"source" : "Assets",
"message" : "7 assets loaded",
"severity" : "SUCCESS",
"sticky" : false
}, {
"source" : "Assets",
"message" : "Discovered asset: test",
"severity" : "INFO",
"sticky" : false
} ] } ]

View File

@ -16,11 +16,6 @@
"asset_uuid" : "9a7386e7-6f0e-4e4c-9919-0de71e0b7031", "asset_uuid" : "9a7386e7-6f0e-4e4c-9919-0de71e0b7031",
"root" : "ui/sound", "root" : "ui/sound",
"included_in_build" : true "included_in_build" : true
}, {
"asset_id" : 9,
"asset_uuid" : "b23fd13b-9a52-4a76-9e8a-9286f59757b2",
"root" : "ui/test",
"included_in_build" : true
}, { }, {
"asset_id" : 11, "asset_id" : 11,
"asset_uuid" : "64147d33-e8bf-4272-bb5c-b4c07c0276b3", "asset_uuid" : "64147d33-e8bf-4272-bb5c-b4c07c0276b3",

View File

@ -2,7 +2,7 @@
"schema_version" : 1, "schema_version" : 1,
"asset_uuid" : "64147d33-e8bf-4272-bb5c-b4c07c0276b3", "asset_uuid" : "64147d33-e8bf-4272-bb5c-b4c07c0276b3",
"name" : "Bigode", "name" : "Bigode",
"type" : "image_bank", "type" : "tile_bank",
"inputs" : { }, "inputs" : { },
"output" : { "output" : {
"format" : "TILES/indexed_v1", "format" : "TILES/indexed_v1",

View File

@ -2,7 +2,7 @@
"schema_version" : 1, "schema_version" : 1,
"asset_uuid" : "b15b319f-5cab-4254-93ea-d83f4742d204", "asset_uuid" : "b15b319f-5cab-4254-93ea-d83f4742d204",
"name" : "ui_atlas", "name" : "ui_atlas",
"type" : "image_bank", "type" : "tile_bank",
"inputs" : { "inputs" : {
"sprites" : [ "sprites/confirm.png" ] "sprites" : [ "sprites/confirm.png" ]
}, },

View File

@ -2,7 +2,7 @@
"schema_version" : 1, "schema_version" : 1,
"asset_uuid" : "f64d3bfe-443d-4703-b62a-face19a32cac", "asset_uuid" : "f64d3bfe-443d-4703-b62a-face19a32cac",
"name" : "bbb2", "name" : "bbb2",
"type" : "image_bank", "type" : "tile_bank",
"inputs" : { }, "inputs" : { },
"output" : { "output" : {
"codec" : "NONE", "codec" : "NONE",

View File

@ -2,7 +2,7 @@
"schema_version" : 1, "schema_version" : 1,
"asset_uuid" : "4d9847b0-5a23-421f-8b78-bf3909ca2281", "asset_uuid" : "4d9847b0-5a23-421f-8b78-bf3909ca2281",
"name" : "one-more-atlas", "name" : "one-more-atlas",
"type" : "image_bank", "type" : "tile_bank",
"inputs" : { }, "inputs" : { },
"output" : { "output" : {
"format" : "TILES/indexed_v1", "format" : "TILES/indexed_v1",

View File

@ -2,7 +2,7 @@
"schema_version": 1, "schema_version": 1,
"asset_uuid": "21953cb8-4101-4790-9e5e-d95f5fbc9b5a", "asset_uuid": "21953cb8-4101-4790-9e5e-d95f5fbc9b5a",
"name": "ui_atlas", "name": "ui_atlas",
"type": "image_bank", "type": "tile_bank",
"inputs": { "sprites": ["sprites/confirm.png"] }, "inputs": { "sprites": ["sprites/confirm.png"] },
"output": { "format": "TILES/indexed_v1", "codec": "NONE" }, "output": { "format": "TILES/indexed_v1", "codec": "NONE" },
"preload": { "enabled": true } "preload": { "enabled": true }

View File

@ -2,7 +2,7 @@
"schema_version" : 1, "schema_version" : 1,
"asset_uuid" : "62a81570-8f47-4612-9288-6060e6c9a2e2", "asset_uuid" : "62a81570-8f47-4612-9288-6060e6c9a2e2",
"name" : "one-more-atlas", "name" : "one-more-atlas",
"type" : "image_bank", "type" : "tile_bank",
"inputs" : { }, "inputs" : { },
"output" : { "output" : {
"format" : "TILES/indexed_v1", "format" : "TILES/indexed_v1",

View File

@ -5,7 +5,7 @@
"type" : "sound_bank", "type" : "sound_bank",
"inputs" : { }, "inputs" : { },
"output" : { "output" : {
"format" : "AUDIO/pcm_v1", "format" : "SOUND/v1",
"codec" : "NONE", "codec" : "NONE",
"codec_configuration" : { } "codec_configuration" : { }
}, },

View File

@ -1,14 +0,0 @@
{
"schema_version" : 1,
"asset_uuid" : "b23fd13b-9a52-4a76-9e8a-9286f59757b2",
"name" : "test",
"type" : "palette_bank",
"inputs" : { },
"output" : {
"format" : "PALETTE/indexed_v1",
"codec" : "NONE"
},
"preload" : {
"enabled" : false
}
}