diff --git a/crates/sylpheed-export/src/main.rs b/crates/sylpheed-export/src/main.rs index 58c5a8d3..c72d5e0a 100644 --- a/crates/sylpheed-export/src/main.rs +++ b/crates/sylpheed-export/src/main.rs @@ -208,6 +208,54 @@ fn load_also_export(authored: &Path) -> Result { /// exactly four bundles and all four are real screens, with zero fragments. In /// another archive it would not be, which is why this is an allow-list and not /// a widened predicate. +/// Which archives the export reads, from `authored/screen_names.json` +/// `export_archives`. +/// +/// 🔴 THIS WAS ONE HARDCODED CONSTANT AND IT COST FOUR MENU DESTINATIONS. +/// `authored/flow.json` records LOAD GAME, TUTORIAL, OPTIONS and NEW GAME's +/// difficulty chain as MEASURED destinations that are `blocked` because "not a +/// GP_TITLE build, so there is no screen file to go to". The blocker was never +/// the disc or the reader -- `examples/probe_archives.rs` finds screen builds in +/// 24 archives using the EXISTING detector. It was this line. +/// +/// Absent from the authored file, it stays exactly what it was, so an old +/// `authored/` tree exports what it always did. +fn load_export_archives(authored: &Path) -> Result> { + let path = authored.join("screen_names.json"); + let Ok(text) = std::fs::read_to_string(&path) else { + return Ok(vec!["dat/GP_TITLE.pak".into()]); + }; + let v: serde_json::Value = serde_json::from_str(&text) + .with_context(|| format!("parse {}", path.display()))?; + match v.get("export_archives").and_then(|a| a.as_array()) { + None => Ok(vec!["dat/GP_TITLE.pak".into()]), + Some(list) => Ok(list + .iter() + .filter_map(|e| e.as_str().map(str::to_owned)) + .collect()), + } +} + +/// The sprite subdirectory for an archive: `dat/GP_OPTIONS.pak` -> `options`. +/// +/// ⚠️ NOT cosmetic. Sprites are written to `sprites///`, so two +/// archives sharing a group would collide by screen name -- and unnamed builds +/// are named `build_NN` by ENTRY INDEX, which restarts at 0 in every archive. +/// `GP_TITLE` keeps its historical `title` so no existing path moves. +fn group_for(archive: &str) -> &'static str { + match archive { + "dat/GP_TITLE.pak" => "title", + "dat/GP_OPTIONS.pak" => "options", + "dat/GP_SAVE_LOAD.pak" => "save_load", + "dat/GP_TUTORIAL.pak" => "tutorial", + "dat/GP_DIALOG.pak" => "dialog", + // Deliberately not derived from the filename: a new archive should be a + // decision someone made, not a directory that appears because a string + // parsed. An unmapped archive is rejected below. + _ => "", + } +} + fn screen_builds(ar: &PakArchive, also: Option<&std::collections::BTreeMap>) -> Vec<(usize, Vec)> { @@ -244,9 +292,7 @@ fn run_export(disc: &Path, out: &Path, authored_dir: &Path) -> Result<()> { // has to know about; it is not an error, and it is not a log line, because // the person who needs it reads `manifest.json` and never sees stdout. let mut warnings: Vec = vec![ - "GP_TITLE screen builds only. No other archive, and only the two movies \ - MISSION section 6 puts in scope." - .into(), + String::new(), // replaced below once the archive list is known "The four splash bundles (entries 10/13 publisher, 11/14 developer) have no .rat \ layout child, so `is_build` cannot see them and no content rule can: element \ count and design size both overlap with two-element fragments in other archives. \ @@ -290,60 +336,76 @@ fn run_export(disc: &Path, out: &Path, authored_dir: &Path) -> Result<()> { } std::fs::create_dir_all(&out)?; - let archive = "dat/GP_TITLE.pak"; - let pak = disc.join(archive); - let ar = PakArchive::open(&pak).with_context(|| format!("open {}", pak.display()))?; let also = load_also_export(authored_dir)?; - let archive_also = also.get(archive); - let builds = screen_builds(&ar, archive_also); - println!("{archive}: {} screen build(s)", builds.len()); - - let archive_names = names.get(archive); + let archives = load_export_archives(authored_dir)?; + warnings[0] = format!( + "Screen builds from {} only ({}). Other archives on the disc also contain UI \ + builds and are not exported. Only the two movies MISSION section 6 puts in scope.", + archives.len(), + archives.join(", ") + ); let mut screens = Vec::new(); - for (build_idx, (entry, bytes)) in builds.iter().enumerate() { - // Keyed by ENTRY, not by the ordinal: widening the enumeration to reach - // the splash renumbers ordinals, and a name that moves when the rule - // changes is not a name. - let key = entry.to_string(); - let named = archive_names - .and_then(|m| m.get(&key)) - .or_else(|| archive_also.and_then(|m| m.get(&key))); - let (name, name_source, why) = match named { - Some(e) => (e.name.clone(), "authored", e.why.clone()), - // Nobody has identified this build. Emit a stable synthetic id and - // say in the file that the name is not a recovered one. - None => (format!("build_{entry:02}"), "index", None), - }; - let ex = screen::export_build( - &out, - archive, - *entry, - build_idx, - bytes, - &name, - name_source, - why, - "title", - EXPORTER, - FORMATS_REV, - ) - .with_context(|| format!("export build {build_idx} of {archive}"))?; - println!( - " [{build_idx}] entry {entry:<3} -> {} ({} sprites{})", - ex.json_path, - ex.sprites, - if ex.missing.is_empty() { - String::new() - } else { - format!(", {} missing", ex.missing.len()) - } - ); - screens.push(ManifestScreen { - name: ex.name, - file: ex.json_path, - sprites: ex.sprites, - missing_sprites: ex.missing, - }); + for archive in archives.iter().map(String::as_str) { + let group = group_for(archive); + if group.is_empty() { + anyhow::bail!( + "authored/screen_names.json export_archives lists {archive}, which has no \ + sprite group in group_for(). Add one deliberately -- deriving it from the \ + filename would let a typo create a directory." + ); + } + let pak = disc.join(archive); + let ar = PakArchive::open(&pak).with_context(|| format!("open {}", pak.display()))?; + let archive_also = also.get(archive); + let builds = screen_builds(&ar, archive_also); + println!("{archive}: {} screen build(s) -> sprites/{group}/", builds.len()); + + let archive_names = names.get(archive); + for (build_idx, (entry, bytes)) in builds.iter().enumerate() { + // Keyed by ENTRY, not by the ordinal: widening the enumeration to reach + // the splash renumbers ordinals, and a name that moves when the rule + // changes is not a name. + let key = entry.to_string(); + let named = archive_names + .and_then(|m| m.get(&key)) + .or_else(|| archive_also.and_then(|m| m.get(&key))); + let (name, name_source, why) = match named { + Some(e) => (e.name.clone(), "authored", e.why.clone()), + // Nobody has identified this build. Emit a stable synthetic id and + // say in the file that the name is not a recovered one. + None => (format!("build_{entry:02}"), "index", None), + }; + let ex = screen::export_build( + &out, + archive, + *entry, + build_idx, + bytes, + &name, + name_source, + why, + group, + EXPORTER, + FORMATS_REV, + ) + .with_context(|| format!("export build {build_idx} of {archive}"))?; + println!( + " [{build_idx}] entry {entry:<3} -> {} ({} sprites{})", + ex.json_path, + ex.sprites, + if ex.missing.is_empty() { + String::new() + } else { + format!(", {} missing", ex.missing.len()) + } + ); + screens.push(ManifestScreen { + name: ex.name, + file: ex.json_path, + sprites: ex.sprites, + missing_sprites: ex.missing, + }); + } } // MISSION §6: the boot intro and the one new-game intro only. diff --git a/export-probe/audio/bgm/main_menu.ogg b/export-probe/audio/bgm/main_menu.ogg new file mode 100644 index 00000000..d25edf41 Binary files /dev/null and b/export-probe/audio/bgm/main_menu.ogg differ diff --git a/export-probe/audio/se/back.ogg b/export-probe/audio/se/back.ogg new file mode 100644 index 00000000..7a1f75da Binary files /dev/null and b/export-probe/audio/se/back.ogg differ diff --git a/export-probe/audio/se/confirm.ogg b/export-probe/audio/se/confirm.ogg new file mode 100644 index 00000000..6add7cef Binary files /dev/null and b/export-probe/audio/se/confirm.ogg differ diff --git a/export-probe/audio/se/move.ogg b/export-probe/audio/se/move.ogg new file mode 100644 index 00000000..4bd77cfd Binary files /dev/null and b/export-probe/audio/se/move.ogg differ diff --git a/export-probe/audio/voice/ADV.ogg b/export-probe/audio/voice/ADV.ogg new file mode 100644 index 00000000..8c04a05d Binary files /dev/null and b/export-probe/audio/voice/ADV.ogg differ diff --git a/export-probe/audio/voice/S00A.ogg b/export-probe/audio/voice/S00A.ogg new file mode 100644 index 00000000..b65555a5 Binary files /dev/null and b/export-probe/audio/voice/S00A.ogg differ diff --git a/export-probe/manifest.json b/export-probe/manifest.json new file mode 100644 index 00000000..a3148862 --- /dev/null +++ b/export-probe/manifest.json @@ -0,0 +1,169 @@ +{ + "format": "sylpheed.manifest/1", + "exporter": "sylpheed-export 0.1.0", + "formats_rev": "8b6dbcf", + "disc": "/disc", + "screens": [ + { + "name": "build_00", + "file": "screens/title/build_00.json", + "sprites": 7 + }, + { + "name": "build_01", + "file": "screens/title/build_01.json", + "sprites": 7 + }, + { + "name": "press_start", + "file": "screens/title/press_start.json", + "sprites": 2 + }, + { + "name": "press_start_jp", + "file": "screens/title/press_start_jp.json", + "sprites": 2 + }, + { + "name": "title", + "file": "screens/title/title.json", + "sprites": 18 + }, + { + "name": "main_menu", + "file": "screens/title/main_menu.json", + "sprites": 20 + }, + { + "name": "extras", + "file": "screens/title/extras.json", + "sprites": 20 + }, + { + "name": "title_jp", + "file": "screens/title/title_jp.json", + "sprites": 24 + }, + { + "name": "main_menu_jp", + "file": "screens/title/main_menu_jp.json", + "sprites": 20 + }, + { + "name": "extras_jp", + "file": "screens/title/extras_jp.json", + "sprites": 20 + }, + { + "name": "publisher_logo", + "file": "screens/title/publisher_logo.json", + "sprites": 2 + }, + { + "name": "developer_logos", + "file": "screens/title/developer_logos.json", + "sprites": 6 + }, + { + "name": "build_12", + "file": "screens/title/build_12.json", + "sprites": 9 + }, + { + "name": "publisher_logo_r", + "file": "screens/title/publisher_logo_r.json", + "sprites": 2 + }, + { + "name": "developer_logos_r", + "file": "screens/title/developer_logos_r.json", + "sprites": 6 + }, + { + "name": "build_15", + "file": "screens/title/build_15.json", + "sprites": 9 + } + ], + "videos": [ + { + "name": "ADV", + "file": "video/ADV.ogv", + "command": "ffmpeg -hide_banner -loglevel error -y -i /disc/dat/movie/ADV.wmv -c:v libtheora -q:v 8 -c:a libvorbis -q:a 5 -af pan=stereo|FL=0.4142*FL+0.2929*FC+0.2929*BL |FR=0.4142*FR+0.2929*FC+0.2929*BR -ac 2 export-probe/video/ADV.ogv", + "why": "HANDOFF Q9: ADVERTISE_MOVIE -> ADV.wmv, and the boot intro and the attract movie are the SAME asset -- there is no separate boot slot.", + "duration_s": 137.437458, + "fps": 30.0 + }, + { + "name": "S00A", + "file": "video/S00A.ogv", + "command": "ffmpeg -hide_banner -loglevel error -y -i /disc/dat/movie/S00A.wmv -c:v libtheora -q:v 8 -c:a libvorbis -q:a 5 -af pan=stereo|FL=0.4142*FL+0.2929*FC+0.2929*BL |FR=0.4142*FR+0.2929*FC+0.2929*BR -ac 2 export-probe/video/S00A.ogv", + "why": "HANDOFF Q9: MS00A -> S00A.wmv is the new-game intro. P7.", + "duration_s": 93.778583, + "fps": 30.0 + } + ], + "audio": [ + { + "kind": "se", + "name": "back", + "file": "audio/se/back.ogg", + "command": "ffmpeg -hide_banner -loglevel error -y -i export-probe/audio/se/.back.xma.wav -c:a libvorbis -q:a 5 export-probe/audio/se/back.ogg", + "why": "HANDOFF Q8, measured: the (B) back cue, 4 096 B / 0.344 s, reproduced across two boots. No `name_match` for the same reason as `confirm` -- Q8 names no identifier for it. AUTHORED because it is measured, not decoded: authored/audio.json se.back. Located in Static.slb at 0xec0 for 2 packet(s); the ASSEMBLY is sylpheed_formats::media::se_wave_riff, which refuses a short read.", + "peak_dbfs": -5.699542, + "duration_s": 0.343833 + }, + { + "kind": "se", + "name": "confirm", + "file": "audio/se/confirm.ogg", + "command": "ffmpeg -hide_banner -loglevel error -y -i export-probe/audio/se/.confirm.xma.wav -c:a libvorbis -q:a 5 export-probe/audio/se/confirm.ogg", + "why": "HANDOFF Q8, measured: the (A) confirm cue, 12 288 B / 1.016 s. NO `name_match`: Q8 is explicit that (A)'s wave was not separated between `SE_UI_DECIDE` and `SE_UI_SUB_WIN_OPN`, so naming it would invent the one thing the measurement did not settle. AUTHORED because it is measured, not decoded: authored/audio.json se.confirm. Located in Static.slb at 0x5d6c0 for 6 packet(s); the ASSEMBLY is sylpheed_formats::media::se_wave_riff, which refuses a short read.", + "peak_dbfs": 0.178538, + "duration_s": 1.016 + }, + { + "kind": "se", + "name": "move", + "file": "audio/se/move.ogg", + "command": "ffmpeg -hide_banner -loglevel error -y -i export-probe/audio/se/.move.xma.wav -c:a libvorbis -q:a 5 export-probe/audio/se/move.ogg", + "why": "HANDOFF Q8, measured: the d-pad move cue, 8 192 B / 0.533 s, reproduced across two boots. Left/right play nothing at all, which is a measurement too and is why there is no `left`/`right` row here rather than a silent file. AUTHORED because it is measured, not decoded: authored/audio.json se.move. Located in Static.slb at 0x1ec0 for 4 packet(s); the ASSEMBLY is sylpheed_formats::media::se_wave_riff, which refuses a short read.", + "peak_dbfs": -1.397579, + "duration_s": 0.533354, + "name_match": "SE_UI_CURSOR" + }, + { + "kind": "bgm", + "name": "main_menu", + "file": "audio/bgm/main_menu.ogg", + "command": "ffmpeg -hide_banner -loglevel error -y -i export-probe/audio/bgm/.main_menu.0.xma.wav -i export-probe/audio/bgm/.main_menu.1.xma.wav -filter_complex amix=inputs=2:normalize=0,volume=0.500000 -ss 9.44 -t 61.87 -c:a libvorbis -q:a 5 export-probe/audio/bgm/main_menu.ogg", + "why": "MEASURED, HANDOFF Q10 -- NOT a port choice. `GamePart_Title`'s phase handler `sub_821C5580` plays cue 1103 = `BGM_103`, and `BGM_103.slb`'s two declared waves (3 876 864 / 3 930 112 B) are byte-for-byte the two streams the XMA probe saw decoding at the main menu. Static code, disc census and runtime all agree; see docs/re/menu-audio-cues.md and docs/re/structures/bgm-two-stems.md. The name carries its `.slb` extension because that is what `sound.pak` hashes -- `BGM_103` alone resolves to nothing, which is how the first draft of this file failed. ✅ AUDITED 2026-08-31 -- the THREE legs are three, and that is now measured rather than asserted. Prompted by the Decoder's point that a decorative second support is worse than none, since a conclusion with two supports reads as better evidenced than one and apparent redundancy is itself the misinformation. Read literally, 'disc census' and 'runtime' could be ONE comparison -- declared wave sizes matched byte-for-byte against the probe -- which would make three legs two. It is a real third leg only if the census EXCLUDES alternatives: if another bank carried the same two sizes, the byte match would not distinguish BGM_103. Measured with this port's own reader (`crates/sylpheed-export/examples/bgm_size_census.rs`): of 32 readable BGM_* banks on the disc, EXACTLY ONE carries waves of that size. The census therefore excludes, the static-code leg names the cue independently, and the three legs stand. ✅ AND THE EXCLUSION IS TIGHTER THAN I STATED. The Decoder attempted to refute it from their own census tool rather than this port's reader: of 32 census rows, exactly one bank carries EITHER of those wave sizes -- not merely both together, which is what I measured. A collision would therefore need to reproduce a single size, not a pair, and none does. authored/audio.json bgm.main_menu names bank BGM_103.slb. Of its 2 sub-wave(s), 2 are SUMMED into one file and the sum is scaled by 1/2, which is the smallest constant that cannot clip. MEASURED, HANDOFF Q10: a bank is exactly TWO waves of identical duration (32/32 banks on the disc), sample-synchronous -- transient correlation peaks at lag 0.00 s over +/-5 s and both stop at the same millisecond. Concatenating them plays the piece twice, the second time as a bass-less stem; that was the previous reading and it is refuted. Emitting two files would be wrong for a second reason: MODDING rule 1 is one logical asset, one file, and handing a modder two stems to line up by hand is the reassembly the exporter exists to have already done. WHAT IS SUMMED IS SETTLED; WHAT WAVE 1 IS, IS NOT -- HANDOFF calls it quieter, far more L/R-decorrelated and almost bass-free, so it reads as a surround-rear pair OR a second intensity layer, and `ChannelMask` is 0x0002 on both so the file will not say. A unity sum is right under either reading; a weighting would only be justified once that is settled. MEASURED, and this field's own history is why it says so first. The bed loops; the loop is a RUNTIME field -- `loop_start`/`loop_end` in the XMA decoder context, set by `XMASetLoopData` and logged by Xenia -- and the cycle was watched directly: three wraps, both contexts wrapping at the same instant every time, mean 61.81 s against the 61.93 s authored in `loop_end_s`, 0.2 % apart from instruments sharing nothing. The export is TRIMMED to that window, because Godot loops a whole file and a loop region therefore has to BE the file. ⚠️ The window's START is not measured and is authored as 0, which is known to be wrong -- see `loop_start_why`. 🔴 EVERY SENTENCE THAT PRECEDED THIS ONE WAS REFUTED, and the previous text survived in the manifest for two days after the corrections were written. It said the loop would be `AUDIBLY WRONG AT THE SEAM [refuted]`, that `no loop-point field has been identified [refuted] anywhere`, and that trimming `would INVENT a loop point`. All three are false: the field exists, the 3.4 s of near-silence was the PORT'S loop and not the game's, and the trim is now what the measurement says. The corrections went into `loop_end_why` and `loop_start_why`; this field is the one the exporter concatenates into `manifest.json`, so the export went on telling readers the refuted story. A correction that does not reach the artifact a consumer reads has not been made. 📌 CITATIONS ADDED 2026-09-01, and their absence was found by `audit-kinds` the moment this field got a `kind` -- it had 1 400 characters of prose and nothing openable, which is exactly the state the audit exists to catch and could not see while the field was unlabelled. The wrap measurement is docs/re/data/menu-bgm-loop-measured.txt and the start is docs/re/data/menu-bgm-loop-start.txt; the bank's two-stem structure is docs/re/structures/bgm-two-stems.md.", + "peak_dbfs": -4.201146, + "duration_s": 61.87, + "loop_mode": "restart" + }, + { + "kind": "voice", + "name": "ADV", + "file": "audio/voice/ADV.ogg", + "command": "ffmpeg -hide_banner -loglevel error -y -i export-probe/audio/voice/.ADV.0.xma.wav -i export-probe/audio/voice/.ADV.1.xma.wav -i export-probe/audio/voice/.ADV.2.xma.wav -filter_complex [0:a]anull,pan=mono|c0=0.500000*c0+0.500000*c1[m0];[1:a]anull,pan=mono|c0=c0[m1];[2:a]anull,pan=mono|c0=0.500000*c0+0.500000*c1[m2];[m0]volume=0.4142[w0];[m1]volume=0.2929[w1];[m2]volume=0.2929[w2];[w0][w1][w2]amix=inputs=3:normalize=0[a] -map [a] -c:a libvorbis -q:a 5 export-probe/audio/voice/ADV.ogg", + "why": "DECODED, not authored: the movie manifest in tables.pak binds ADV to a voice cue, and sylpheed_formats::media::resolve_movie_voice_region walks movie -> token -> sound id -> byte region [433425776, 437044592) of the continuous voice stream. NOT matched by filename: RT01A's voice lives inside VOICE_ADV.slb, so the name is right for this movie by luck and wrong for others. ✅ ALL 3 region chunk(s) are exported, summed. Keeping ONE was REFUTED FROM THE OUTPUT SIDE 2026-08-30: a recording of the game's own 6-channel output over the intro decomposes as capture = 0.600 x movie + residual, and the residual is THREE signals at three positions -- front pair (r 0.918), rear pair (r 0.929), and a centre whose partner LFE is empty to -115 dB. The load-bearing number is LFE reproducing to -115.73 dBFS: where nothing is added the two decoders agree exactly, so the other residuals are ADDED CONTENT and not codec mismatch. ⚠️ WHICH stream sits at which position is NOT determined -- the assignment is by position, not content -- so this is a mono sum divided by the count, never a positional downmix. The three downmix weights sum to one whatever the assignment, so the total is right and the distribution is the only thing unclaimed. ⚠️ The movie's OWN track is WMA Pro 5.1 and carries the bed; these streams are additional. 3 kept under presentation `all`, folded to mono on each stream's own live channels. Chunks found, in region order: chunk 0 1294396 B (137.324 s); chunk 1 1118268 B (137.324 s); chunk 2 1171516 B (137.324 s). Decoded length 137.324 s against the movie's 137.437 s (delta -0.114 s); NOT trimmed to fit -- a clamp would hide a resolution error, and the runtime stops the voice when the video ends.", + "peak_dbfs": -2.866331, + "duration_s": 137.32394 + }, + { + "kind": "voice", + "name": "S00A", + "file": "audio/voice/S00A.ogg", + "command": "ffmpeg -hide_banner -loglevel error -y -i export-probe/audio/voice/.S00A.0.xma.wav -i export-probe/audio/voice/.S00A.1.xma.wav -filter_complex [0:a]anull,pan=mono|c0=0.500000*c0+0.500000*c1[m0];[1:a]anull,pan=mono|c0=c0[m1];[m0][m1]amix=inputs=2:normalize=1[a] -map [a] -c:a libvorbis -q:a 5 export-probe/audio/voice/S00A.ogg", + "why": "DECODED, not authored: the movie manifest in tables.pak binds S00A to a voice cue, and sylpheed_formats::media::resolve_movie_voice_region walks movie -> token -> sound id -> byte region [452294000, 455499120) of the continuous voice stream. NOT matched by filename: RT01A's voice lives inside VOICE_ADV.slb, so the name is right for this movie by luck and wrong for others. ✅ ALL 3 region chunk(s) are exported, summed. Keeping ONE was REFUTED FROM THE OUTPUT SIDE 2026-08-30: a recording of the game's own 6-channel output over the intro decomposes as capture = 0.600 x movie + residual, and the residual is THREE signals at three positions -- front pair (r 0.918), rear pair (r 0.929), and a centre whose partner LFE is empty to -115 dB. The load-bearing number is LFE reproducing to -115.73 dBFS: where nothing is added the two decoders agree exactly, so the other residuals are ADDED CONTENT and not codec mismatch. ⚠️ WHICH stream sits at which position is NOT determined -- the assignment is by position, not content -- so this is a mono sum divided by the count, never a positional downmix. The three downmix weights sum to one whatever the assignment, so the total is right and the distribution is the only thing unclaimed. ⚠️ The movie's OWN track is WMA Pro 5.1 and carries the bed; these streams are additional. 2 kept under presentation `all`, folded to mono on each stream's own live channels. Chunks found, in region order: chunk 0 1810492 B (93.694 s); chunk 1 1263676 B (93.694 s); chunk 2 98364 B (93.694 s, SILENT). Also dropped: chunk 2 (93.694 s, 98364 B, peak SILENT). A chunk marked SILENT carries no signal and contributes nothing; one of a different duration is not a concurrent stream of this take. 🔴 THIS SENTENCE USED TO SAY the leading chunk was `the TAIL of the kept stream [refuted]`, on a sliding envelope correlation of r=0.998. The CORRELATION was sound and the INTERPRETATION was refuted: `resolve_movie_voice_region` was starting 238 packets inside the first stream, so what matched end-flush was a START-TRUNCATED SIMULTANEOUS stream, not a duplicate tail -- which is why it aligned at the end. Fixed in formats-pin-2026-08-30; that chunk is now kept at full length and nothing is dropped for that reason any more. Decoded length 93.694 s against the movie's 93.779 s (delta -0.085 s); NOT trimmed to fit -- a clamp would hide a resolution error, and the runtime stops the voice when the video ends.", + "peak_dbfs": -2.827022, + "duration_s": 93.69375 + } + ], + "warnings": [ + "Screen builds from 1 only (dat/GP_TITLE.pak). Other archives on the disc also contain UI builds and are not exported. Only the two movies MISSION section 6 puts in scope.", + "The four splash bundles (entries 10/13 publisher, 11/14 developer) have no .rat layout child, so `is_build` cannot see them and no content rule can: element count and design size both overlap with two-element fragments in other archives. They are located by ENTRY INDEX from authored/screen_names.json `also_export`, which is a locator and not a claim -- see each one's name_why.", + "video/*.ogv: the 5.1->stereo fold is NOT the matrix MISSION §6 pins. §6 fixes it at FL = 1.0*FL + 0.707*FC + 0.707*BL (a human decision, 2026-08-29); this export ships that matrix scaled by 0.4142 -- same weighting, 7.65 dB quieter. Measured over the whole of both movies, float-decoded so nothing is pre-clamped: under the PINNED matrix ADV peaks at +4.26 dBFS with 4406 samples at or over full scale (1874 more than 1 dB over, longest clamped run 0.333 ms), while S00A peaks at -1.34 dBFS and never clips. So the pin overloads ADV and this constant is over-broad for S00A; the smallest single scalar under which neither clamps is 1/1.6339 = 0.612. NOT changed on the exporter's own authority -- the level of a mix is what §6 reserves to a human. See docs/port/DECISIONS.md." + ] +} diff --git a/export-probe/screens/title/build_00.json b/export-probe/screens/title/build_00.json new file mode 100644 index 00000000..8b8203e3 --- /dev/null +++ b/export-probe/screens/title/build_00.json @@ -0,0 +1,1098 @@ +{ + "format": "sylpheed.screen/3", + "exporter": "sylpheed-export 0.1.0", + "formats_rev": "8b6dbcf", + "source": { + "archive": "dat/GP_TITLE.pak", + "entry": 0, + "build": 0 + }, + "name": "build_00", + "name_source": "index", + "design": [ + 1280, + 720 + ], + "elements": [ + { + "index": 0, + "id": "pgloading_loop1", + "declared": "pgloading_loop1.rat", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/build_00/pgloading_circle1.png", + "leaf": { + "record": "pgloading_loop1.rat", + "loop_length_units": 300, + "elements": [ + { + "id": "pgloading_circle1", + "declared": "pgloading_circle1.t32", + "sprite": "sprites/title/build_00/pgloading_circle1.png", + "blend_additive": true, + "pivot": [ + 37, + 37 + ], + "rest": { + "pos": [ + 130, + 574 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 130, + 574 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 300, + "pos": [ + 130, + 574 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": -360 + } + ] + } + ] + }, + "opt_link": "pgloading_loop3.rat", + "pivot": [ + 37, + 37 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x0000c110", + "animated": true, + "rest": { + "pos": [ + 130, + 574 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 16 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 130, + 574 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 8, + "pos": [ + 130, + 574 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 16, + "pos": [ + 130, + 574 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 32, + "pos": [ + 130, + 574 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 40, + "pos": [ + 130, + 574 + ], + "scale": [ + 150, + 150 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 1, + "id": "pgloading_loop3", + "declared": "pgloading_loop3.rat", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/build_00/pgloading_processing.png", + "leaf": { + "record": "pgloading_loop3.rat", + "loop_length_units": 120, + "elements": [ + { + "id": "pgloading_processing", + "declared": "pgloading_processing.t32", + "sprite": "sprites/title/build_00/pgloading_processing.png", + "blend_additive": false, + "pivot": [ + 132, + 12 + ], + "rest": { + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 30 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x40ffffff", + "rotation_deg": 0 + }, + { + "t": 5, + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x50ffffff", + "rotation_deg": 0 + }, + { + "t": 25, + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xf0ffffff", + "rotation_deg": 0 + }, + { + "t": 30, + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 65, + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 73, + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xf0ffffff", + "rotation_deg": 0 + }, + { + "t": 112, + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x50ffffff", + "rotation_deg": 0 + }, + { + "t": 120, + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x40ffffff", + "rotation_deg": 0 + } + ] + } + ] + }, + "opt_link": "pgloading_loop4.rat", + "pivot": [ + 132, + 12 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x0000c150", + "animated": true, + "rest": { + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 24 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 16, + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 24, + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 26, + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 34, + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 2, + "id": "pgloading_str", + "declared": "pgloading_str.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/build_00/pgloading_str.png", + "pivot": [ + 81, + 20 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x0000c150", + "rest": { + "pos": [ + 227, + 553 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 22 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 227, + 553 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 14, + "pos": [ + 187, + 553 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 18, + "pos": [ + 217, + 553 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 0 + }, + { + "t": 20, + "pos": [ + 224, + 553 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xc0ffffff", + "rotation_deg": 0 + }, + { + "t": 22, + "pos": [ + 227, + 553 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 28, + "pos": [ + 227, + 553 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 34, + "pos": [ + 207, + 553 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 3, + "id": "pgloading_line", + "declared": "pgloading_line.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/build_00/pgloading_line.png", + "pivot": [ + 0, + 16 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x0000c140", + "rest": { + "pos": [ + 167, + 581 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 18 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 167, + 581 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 10, + "pos": [ + 167, + 581 + ], + "scale": [ + 0, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 14, + "pos": [ + 167, + 581 + ], + "scale": [ + 75, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 0 + }, + { + "t": 16, + "pos": [ + 167, + 581 + ], + "scale": [ + 96, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xc0ffffff", + "rotation_deg": 0 + }, + { + "t": 17, + "pos": [ + 167, + 581 + ], + "scale": [ + 99, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xe0ffffff", + "rotation_deg": 0 + }, + { + "t": 18, + "pos": [ + 167, + 581 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 26, + "pos": [ + 167, + 581 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 32, + "pos": [ + 167, + 581 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 4, + "id": "pgloading_loop4", + "declared": "pgloading_loop4.rat", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/build_00/pgloading_delta.png", + "leaf": { + "record": "pgloading_loop4.rat", + "loop_length_units": 360, + "elements": [ + { + "id": "pgloading_delta", + "declared": "pgloading_delta.t32", + "sprite": "sprites/title/build_00/pgloading_delta.png", + "blend_additive": true, + "pivot": [ + 47, + 51 + ], + "rest": { + "pos": [ + 120, + 560 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 120, + 560 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 360, + "pos": [ + 120, + 560 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 360 + } + ] + } + ] + }, + "pivot": [ + 47, + 40 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x0000c130", + "animated": true, + "rest": { + "pos": [ + 120, + 560 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 8 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 120, + 560 + ], + "scale": [ + 0, + 0 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 4, + "pos": [ + 120, + 560 + ], + "scale": [ + 75, + 75 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 0 + }, + { + "t": 6, + "pos": [ + 120, + 560 + ], + "scale": [ + 96, + 96 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xc0ffffff", + "rotation_deg": 0 + }, + { + "t": 7, + "pos": [ + 120, + 560 + ], + "scale": [ + 99, + 99 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xe0ffffff", + "rotation_deg": 0 + }, + { + "t": 8, + "pos": [ + 120, + 560 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 32, + "pos": [ + 120, + 560 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 38, + "pos": [ + 120, + 560 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 5, + "id": "pgloading_eff01", + "declared": "pgloading_eff01.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/build_00/pgloading_eff01.png", + "pivot": [ + 166, + 72 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x0000c100", + "rest": { + "pos": [ + 202, + 528 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x60ffffff", + "rotation_deg": 0, + "t": 16 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 202, + 528 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 16, + "pos": [ + 202, + 528 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x60ffffff", + "rotation_deg": 0 + }, + { + "t": 32, + "pos": [ + 202, + 528 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x60ffffff", + "rotation_deg": 0 + }, + { + "t": 40, + "pos": [ + 202, + 528 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 6, + "id": "pgloading_eff02", + "declared": "pgloading_eff02.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/build_00/pgloading_eff02.png", + "pivot": [ + 94, + 93 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x0000c100", + "rest": { + "pos": [ + 74, + 518 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x60ffffff", + "rotation_deg": 0, + "t": 22 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 74, + 518 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 16, + "pos": [ + 74, + 518 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 22, + "pos": [ + 74, + 518 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x60ffffff", + "rotation_deg": 0 + }, + { + "t": 28, + "pos": [ + 74, + 518 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x60ffffff", + "rotation_deg": 0 + }, + { + "t": 34, + "pos": [ + 74, + 518 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + } + ], + "paint_order": [ + 5, + 6, + 0, + 4, + 3, + 1, + 2 + ], + "buttons": [], + "settle_window": [ + 34, + 38, + 36 + ], + "unresolved": [ + "keyframe_time_unit", + "paint_order_ties", + "fade_out_duration" + ] +} diff --git a/export-probe/screens/title/build_01.json b/export-probe/screens/title/build_01.json new file mode 100644 index 00000000..8dd2c16d --- /dev/null +++ b/export-probe/screens/title/build_01.json @@ -0,0 +1,1098 @@ +{ + "format": "sylpheed.screen/3", + "exporter": "sylpheed-export 0.1.0", + "formats_rev": "8b6dbcf", + "source": { + "archive": "dat/GP_TITLE.pak", + "entry": 1, + "build": 1 + }, + "name": "build_01", + "name_source": "index", + "design": [ + 1280, + 720 + ], + "elements": [ + { + "index": 0, + "id": "pgloading_loop1", + "declared": "pgloading_loop1.rat", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/build_01/pgloading_circle1.png", + "leaf": { + "record": "pgloading_loop1.rat", + "loop_length_units": 300, + "elements": [ + { + "id": "pgloading_circle1", + "declared": "pgloading_circle1.t32", + "sprite": "sprites/title/build_01/pgloading_circle1.png", + "blend_additive": true, + "pivot": [ + 37, + 37 + ], + "rest": { + "pos": [ + 130, + 574 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 130, + 574 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 300, + "pos": [ + 130, + 574 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": -360 + } + ] + } + ] + }, + "opt_link": "pgloading_loop3.rat", + "pivot": [ + 37, + 37 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x0000c110", + "animated": true, + "rest": { + "pos": [ + 130, + 574 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 16 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 130, + 574 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 8, + "pos": [ + 130, + 574 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 16, + "pos": [ + 130, + 574 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 32, + "pos": [ + 130, + 574 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 40, + "pos": [ + 130, + 574 + ], + "scale": [ + 150, + 150 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 1, + "id": "pgloading_loop3", + "declared": "pgloading_loop3.rat", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/build_01/pgloading_processing.png", + "leaf": { + "record": "pgloading_loop3.rat", + "loop_length_units": 120, + "elements": [ + { + "id": "pgloading_processing", + "declared": "pgloading_processing.t32", + "sprite": "sprites/title/build_01/pgloading_processing.png", + "blend_additive": false, + "pivot": [ + 132, + 12 + ], + "rest": { + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 30 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x40ffffff", + "rotation_deg": 0 + }, + { + "t": 5, + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x50ffffff", + "rotation_deg": 0 + }, + { + "t": 25, + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xf0ffffff", + "rotation_deg": 0 + }, + { + "t": 30, + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 65, + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 73, + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xf0ffffff", + "rotation_deg": 0 + }, + { + "t": 112, + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x50ffffff", + "rotation_deg": 0 + }, + { + "t": 120, + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x40ffffff", + "rotation_deg": 0 + } + ] + } + ] + }, + "opt_link": "pgloading_loop4.rat", + "pivot": [ + 132, + 12 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x0000c150", + "animated": true, + "rest": { + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 24 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 16, + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 24, + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 26, + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 34, + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 2, + "id": "pgloading_str", + "declared": "pgloading_str.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/build_01/pgloading_str.png", + "pivot": [ + 81, + 20 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x0000c150", + "rest": { + "pos": [ + 227, + 553 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 22 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 227, + 553 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 14, + "pos": [ + 187, + 553 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 18, + "pos": [ + 217, + 553 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 0 + }, + { + "t": 20, + "pos": [ + 224, + 553 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xc0ffffff", + "rotation_deg": 0 + }, + { + "t": 22, + "pos": [ + 227, + 553 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 28, + "pos": [ + 227, + 553 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 34, + "pos": [ + 207, + 553 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 3, + "id": "pgloading_line", + "declared": "pgloading_line.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/build_01/pgloading_line.png", + "pivot": [ + 0, + 16 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x0000c140", + "rest": { + "pos": [ + 167, + 581 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 18 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 167, + 581 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 10, + "pos": [ + 167, + 581 + ], + "scale": [ + 0, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 14, + "pos": [ + 167, + 581 + ], + "scale": [ + 75, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 0 + }, + { + "t": 16, + "pos": [ + 167, + 581 + ], + "scale": [ + 96, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xc0ffffff", + "rotation_deg": 0 + }, + { + "t": 17, + "pos": [ + 167, + 581 + ], + "scale": [ + 99, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xe0ffffff", + "rotation_deg": 0 + }, + { + "t": 18, + "pos": [ + 167, + 581 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 26, + "pos": [ + 167, + 581 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 32, + "pos": [ + 167, + 581 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 4, + "id": "pgloading_loop4", + "declared": "pgloading_loop4.rat", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/build_01/pgloading_delta.png", + "leaf": { + "record": "pgloading_loop4.rat", + "loop_length_units": 360, + "elements": [ + { + "id": "pgloading_delta", + "declared": "pgloading_delta.t32", + "sprite": "sprites/title/build_01/pgloading_delta.png", + "blend_additive": true, + "pivot": [ + 47, + 51 + ], + "rest": { + "pos": [ + 120, + 560 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 120, + 560 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 360, + "pos": [ + 120, + 560 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 360 + } + ] + } + ] + }, + "pivot": [ + 47, + 40 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x0000c130", + "animated": true, + "rest": { + "pos": [ + 120, + 560 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 8 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 120, + 560 + ], + "scale": [ + 0, + 0 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 4, + "pos": [ + 120, + 560 + ], + "scale": [ + 75, + 75 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 0 + }, + { + "t": 6, + "pos": [ + 120, + 560 + ], + "scale": [ + 96, + 96 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xc0ffffff", + "rotation_deg": 0 + }, + { + "t": 7, + "pos": [ + 120, + 560 + ], + "scale": [ + 99, + 99 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xe0ffffff", + "rotation_deg": 0 + }, + { + "t": 8, + "pos": [ + 120, + 560 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 32, + "pos": [ + 120, + 560 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 38, + "pos": [ + 120, + 560 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 5, + "id": "pgloading_eff01", + "declared": "pgloading_eff01.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/build_01/pgloading_eff01.png", + "pivot": [ + 166, + 72 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x0000c100", + "rest": { + "pos": [ + 202, + 528 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x60ffffff", + "rotation_deg": 0, + "t": 16 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 202, + 528 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 16, + "pos": [ + 202, + 528 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x60ffffff", + "rotation_deg": 0 + }, + { + "t": 32, + "pos": [ + 202, + 528 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x60ffffff", + "rotation_deg": 0 + }, + { + "t": 40, + "pos": [ + 202, + 528 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 6, + "id": "pgloading_eff02", + "declared": "pgloading_eff02.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/build_01/pgloading_eff02.png", + "pivot": [ + 94, + 93 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x0000c100", + "rest": { + "pos": [ + 74, + 518 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x60ffffff", + "rotation_deg": 0, + "t": 22 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 74, + 518 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 16, + "pos": [ + 74, + 518 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 22, + "pos": [ + 74, + 518 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x60ffffff", + "rotation_deg": 0 + }, + { + "t": 28, + "pos": [ + 74, + 518 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x60ffffff", + "rotation_deg": 0 + }, + { + "t": 34, + "pos": [ + 74, + 518 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + } + ], + "paint_order": [ + 5, + 6, + 0, + 4, + 3, + 1, + 2 + ], + "buttons": [], + "settle_window": [ + 34, + 38, + 36 + ], + "unresolved": [ + "keyframe_time_unit", + "paint_order_ties", + "fade_out_duration" + ] +} diff --git a/export-probe/screens/title/build_12.json b/export-probe/screens/title/build_12.json new file mode 100644 index 00000000..05b309c7 --- /dev/null +++ b/export-probe/screens/title/build_12.json @@ -0,0 +1,1454 @@ +{ + "format": "sylpheed.screen/3", + "exporter": "sylpheed-export 0.1.0", + "formats_rev": "8b6dbcf", + "source": { + "archive": "dat/GP_TITLE.pak", + "entry": 12, + "build": 12 + }, + "name": "build_12", + "name_source": "index", + "design": [ + 1280, + 720 + ], + "elements": [ + { + "index": 0, + "id": "pgloading_eff00", + "declared": "pgloading_eff00.prm", + "role": "primitive", + "kind_raw": "0x10", + "pivot": [ + 640, + 360 + ], + "size": [ + 1280, + 720 + ], + "layer_source": "none", + "rest": { + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xff000000", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xff000000", + "rotation_deg": 0 + }, + { + "t": 38, + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xff000000", + "rotation_deg": 0 + }, + { + "t": 48, + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00000000", + "rotation_deg": 0 + } + ] + }, + { + "index": 1, + "id": "pgloading_loop1", + "declared": "pgloading_loop1.rat", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/build_12/pgloading_circle1.png", + "leaf": { + "record": "pgloading_loop1.rat", + "loop_length_units": 300, + "elements": [ + { + "id": "pgloading_circle1", + "declared": "pgloading_circle1.t32", + "sprite": "sprites/title/build_12/pgloading_circle1.png", + "blend_additive": true, + "pivot": [ + 37, + 37 + ], + "rest": { + "pos": [ + 130, + 574 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 130, + 574 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 300, + "pos": [ + 130, + 574 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": -360 + } + ] + } + ] + }, + "opt_link": "pgloading_loop3.rat", + "pivot": [ + 37, + 37 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x0000c110", + "animated": true, + "rest": { + "pos": [ + 130, + 574 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 16 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 130, + 574 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 8, + "pos": [ + 130, + 574 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 16, + "pos": [ + 130, + 574 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 32, + "pos": [ + 130, + 574 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 40, + "pos": [ + 130, + 574 + ], + "scale": [ + 150, + 150 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 2, + "id": "pgloading_loop3", + "declared": "pgloading_loop3.rat", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/build_12/pgloading_processing.png", + "leaf": { + "record": "pgloading_loop3.rat", + "loop_length_units": 120, + "elements": [ + { + "id": "pgloading_processing", + "declared": "pgloading_processing.t32", + "sprite": "sprites/title/build_12/pgloading_processing.png", + "blend_additive": false, + "pivot": [ + 132, + 12 + ], + "rest": { + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 30 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x40ffffff", + "rotation_deg": 0 + }, + { + "t": 5, + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x50ffffff", + "rotation_deg": 0 + }, + { + "t": 25, + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xf0ffffff", + "rotation_deg": 0 + }, + { + "t": 30, + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 65, + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 73, + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xf0ffffff", + "rotation_deg": 0 + }, + { + "t": 112, + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x50ffffff", + "rotation_deg": 0 + }, + { + "t": 120, + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x40ffffff", + "rotation_deg": 0 + } + ] + } + ] + }, + "opt_link": "pgloading_loop4.rat", + "pivot": [ + 132, + 12 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x0000c150", + "animated": true, + "rest": { + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 24 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 16, + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 24, + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 26, + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 34, + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 3, + "id": "pgloading_str", + "declared": "pgloading_str.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/build_12/pgloading_str.png", + "pivot": [ + 81, + 20 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x0000c150", + "rest": { + "pos": [ + 227, + 553 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 22 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 227, + 553 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 14, + "pos": [ + 187, + 553 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 18, + "pos": [ + 217, + 553 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 0 + }, + { + "t": 20, + "pos": [ + 224, + 553 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xc0ffffff", + "rotation_deg": 0 + }, + { + "t": 22, + "pos": [ + 227, + 553 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 28, + "pos": [ + 227, + 553 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 34, + "pos": [ + 207, + 553 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 4, + "id": "pgloading_line", + "declared": "pgloading_line.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/build_12/pgloading_line.png", + "pivot": [ + 0, + 16 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x0000c140", + "rest": { + "pos": [ + 167, + 581 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 18 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 167, + 581 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 10, + "pos": [ + 167, + 581 + ], + "scale": [ + 0, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 14, + "pos": [ + 167, + 581 + ], + "scale": [ + 75, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 0 + }, + { + "t": 16, + "pos": [ + 167, + 581 + ], + "scale": [ + 96, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xc0ffffff", + "rotation_deg": 0 + }, + { + "t": 17, + "pos": [ + 167, + 581 + ], + "scale": [ + 99, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xe0ffffff", + "rotation_deg": 0 + }, + { + "t": 18, + "pos": [ + 167, + 581 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 26, + "pos": [ + 167, + 581 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 32, + "pos": [ + 167, + 581 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 5, + "id": "pgloading_loop4", + "declared": "pgloading_loop4.rat", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/build_12/pgloading_delta.png", + "leaf": { + "record": "pgloading_loop4.rat", + "loop_length_units": 360, + "elements": [ + { + "id": "pgloading_delta", + "declared": "pgloading_delta.t32", + "sprite": "sprites/title/build_12/pgloading_delta.png", + "blend_additive": true, + "pivot": [ + 47, + 51 + ], + "rest": { + "pos": [ + 120, + 560 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 120, + 560 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 360, + "pos": [ + 120, + 560 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 360 + } + ] + } + ] + }, + "opt_link": "pgloading_loop5.rat", + "pivot": [ + 47, + 40 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x0000c130", + "animated": true, + "rest": { + "pos": [ + 120, + 560 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 8 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 120, + 560 + ], + "scale": [ + 0, + 0 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 4, + "pos": [ + 120, + 560 + ], + "scale": [ + 75, + 75 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 0 + }, + { + "t": 6, + "pos": [ + 120, + 560 + ], + "scale": [ + 96, + 96 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xc0ffffff", + "rotation_deg": 0 + }, + { + "t": 7, + "pos": [ + 120, + 560 + ], + "scale": [ + 99, + 99 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xe0ffffff", + "rotation_deg": 0 + }, + { + "t": 8, + "pos": [ + 120, + 560 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 32, + "pos": [ + 120, + 560 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 38, + "pos": [ + 120, + 560 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 6, + "id": "pgloading_loop5", + "declared": "pgloading_loop5.rat", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/build_12/pgloading_ring.png", + "leaf": { + "record": "pgloading_loop5.rat", + "loop_length_units": 300, + "elements": [ + { + "id": "pgloading_ring", + "declared": "pgloading_ring.t32", + "sprite": "sprites/title/build_12/pgloading_ring.png", + "blend_additive": true, + "pivot": [ + 166, + 170 + ], + "rest": { + "pos": [ + 1, + 444 + ], + "scale": [ + 0, + 0 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 1, + 444 + ], + "scale": [ + 0, + 0 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 30, + "pos": [ + 1, + 444 + ], + "scale": [ + 0, + 0 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 55, + "pos": [ + 1, + 444 + ], + "scale": [ + 250, + 250 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 110, + "pos": [ + 1, + 444 + ], + "scale": [ + 800, + 800 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 130, + "pos": [ + 1, + 444 + ], + "scale": [ + 1000, + 1000 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 300, + "pos": [ + 1, + 444 + ], + "scale": [ + 1000, + 1000 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + } + ] + }, + "leaf_carries_geometry": true, + "pivot": [ + 563, + 382 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x0000c010", + "animated": true, + "rest": { + "pos": [ + 1, + 444 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x7fffffff", + "rotation_deg": 0, + "t": 24 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 1, + 444 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 24, + "pos": [ + 1, + 444 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x7fffffff", + "rotation_deg": 0 + }, + { + "t": 26, + "pos": [ + 1, + 444 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x7fffffff", + "rotation_deg": 0 + }, + { + "t": 32, + "pos": [ + 1, + 444 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 7, + "id": "pgloading_baseeff", + "declared": "pgloading_baseeff.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/build_12/pgloading_baseeff.png", + "pivot": [ + 320, + 180 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x0000c020", + "rest": { + "pos": [ + 320, + 180 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 320, + 180 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 32, + "pos": [ + 320, + 180 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 38, + "pos": [ + 320, + 180 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 8, + "id": "pgloading_eff01", + "declared": "pgloading_eff01.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/build_12/pgloading_eff01.png", + "pivot": [ + 166, + 72 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x0000c100", + "rest": { + "pos": [ + 202, + 528 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x60ffffff", + "rotation_deg": 0, + "t": 16 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 202, + 528 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 16, + "pos": [ + 202, + 528 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x60ffffff", + "rotation_deg": 0 + }, + { + "t": 32, + "pos": [ + 202, + 528 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x60ffffff", + "rotation_deg": 0 + }, + { + "t": 40, + "pos": [ + 202, + 528 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 9, + "id": "pgloading_eff02", + "declared": "pgloading_eff02.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/build_12/pgloading_eff02.png", + "pivot": [ + 94, + 93 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x0000c100", + "rest": { + "pos": [ + 74, + 518 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x60ffffff", + "rotation_deg": 0, + "t": 22 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 74, + 518 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 16, + "pos": [ + 74, + 518 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 22, + "pos": [ + 74, + 518 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x60ffffff", + "rotation_deg": 0 + }, + { + "t": 28, + "pos": [ + 74, + 518 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x60ffffff", + "rotation_deg": 0 + }, + { + "t": 34, + "pos": [ + 74, + 518 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + } + ], + "paint_order": [ + 0, + 6, + 7, + 8, + 9, + 1, + 5, + 4, + 2, + 3 + ], + "buttons": [], + "settle_window": [ + 40, + 48, + 44 + ], + "unresolved": [ + "keyframe_time_unit", + "paint_order_ties", + "fade_out_duration" + ] +} diff --git a/export-probe/screens/title/build_15.json b/export-probe/screens/title/build_15.json new file mode 100644 index 00000000..436184cc --- /dev/null +++ b/export-probe/screens/title/build_15.json @@ -0,0 +1,1454 @@ +{ + "format": "sylpheed.screen/3", + "exporter": "sylpheed-export 0.1.0", + "formats_rev": "8b6dbcf", + "source": { + "archive": "dat/GP_TITLE.pak", + "entry": 15, + "build": 15 + }, + "name": "build_15", + "name_source": "index", + "design": [ + 1280, + 720 + ], + "elements": [ + { + "index": 0, + "id": "pgloading_eff00", + "declared": "pgloading_eff00.prm", + "role": "primitive", + "kind_raw": "0x10", + "pivot": [ + 640, + 360 + ], + "size": [ + 1280, + 720 + ], + "layer_source": "none", + "rest": { + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xff000000", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xff000000", + "rotation_deg": 0 + }, + { + "t": 38, + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xff000000", + "rotation_deg": 0 + }, + { + "t": 48, + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00000000", + "rotation_deg": 0 + } + ] + }, + { + "index": 1, + "id": "pgloading_loop1", + "declared": "pgloading_loop1.rat", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/build_15/pgloading_circle1.png", + "leaf": { + "record": "pgloading_loop1.rat", + "loop_length_units": 300, + "elements": [ + { + "id": "pgloading_circle1", + "declared": "pgloading_circle1.t32", + "sprite": "sprites/title/build_15/pgloading_circle1.png", + "blend_additive": true, + "pivot": [ + 37, + 37 + ], + "rest": { + "pos": [ + 130, + 574 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 130, + 574 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 300, + "pos": [ + 130, + 574 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": -360 + } + ] + } + ] + }, + "opt_link": "pgloading_loop3.rat", + "pivot": [ + 37, + 37 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x0000c110", + "animated": true, + "rest": { + "pos": [ + 130, + 574 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 16 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 130, + 574 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 8, + "pos": [ + 130, + 574 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 16, + "pos": [ + 130, + 574 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 32, + "pos": [ + 130, + 574 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 40, + "pos": [ + 130, + 574 + ], + "scale": [ + 150, + 150 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 2, + "id": "pgloading_loop3", + "declared": "pgloading_loop3.rat", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/build_15/pgloading_processing.png", + "leaf": { + "record": "pgloading_loop3.rat", + "loop_length_units": 120, + "elements": [ + { + "id": "pgloading_processing", + "declared": "pgloading_processing.t32", + "sprite": "sprites/title/build_15/pgloading_processing.png", + "blend_additive": false, + "pivot": [ + 132, + 12 + ], + "rest": { + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 30 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x40ffffff", + "rotation_deg": 0 + }, + { + "t": 5, + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x50ffffff", + "rotation_deg": 0 + }, + { + "t": 25, + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xf0ffffff", + "rotation_deg": 0 + }, + { + "t": 30, + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 65, + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 73, + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xf0ffffff", + "rotation_deg": 0 + }, + { + "t": 112, + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x50ffffff", + "rotation_deg": 0 + }, + { + "t": 120, + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x40ffffff", + "rotation_deg": 0 + } + ] + } + ] + }, + "opt_link": "pgloading_loop4.rat", + "pivot": [ + 132, + 12 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x0000c150", + "animated": true, + "rest": { + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 24 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 16, + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 24, + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 26, + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 34, + "pos": [ + 223, + 614 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 3, + "id": "pgloading_str", + "declared": "pgloading_str.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/build_15/pgloading_str.png", + "pivot": [ + 81, + 20 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x0000c150", + "rest": { + "pos": [ + 227, + 553 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 22 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 227, + 553 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 14, + "pos": [ + 187, + 553 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 18, + "pos": [ + 217, + 553 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 0 + }, + { + "t": 20, + "pos": [ + 224, + 553 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xc0ffffff", + "rotation_deg": 0 + }, + { + "t": 22, + "pos": [ + 227, + 553 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 28, + "pos": [ + 227, + 553 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 34, + "pos": [ + 207, + 553 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 4, + "id": "pgloading_line", + "declared": "pgloading_line.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/build_15/pgloading_line.png", + "pivot": [ + 0, + 16 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x0000c140", + "rest": { + "pos": [ + 167, + 581 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 18 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 167, + 581 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 10, + "pos": [ + 167, + 581 + ], + "scale": [ + 0, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 14, + "pos": [ + 167, + 581 + ], + "scale": [ + 75, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 0 + }, + { + "t": 16, + "pos": [ + 167, + 581 + ], + "scale": [ + 96, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xc0ffffff", + "rotation_deg": 0 + }, + { + "t": 17, + "pos": [ + 167, + 581 + ], + "scale": [ + 99, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xe0ffffff", + "rotation_deg": 0 + }, + { + "t": 18, + "pos": [ + 167, + 581 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 26, + "pos": [ + 167, + 581 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 32, + "pos": [ + 167, + 581 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 5, + "id": "pgloading_loop4", + "declared": "pgloading_loop4.rat", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/build_15/pgloading_delta.png", + "leaf": { + "record": "pgloading_loop4.rat", + "loop_length_units": 360, + "elements": [ + { + "id": "pgloading_delta", + "declared": "pgloading_delta.t32", + "sprite": "sprites/title/build_15/pgloading_delta.png", + "blend_additive": true, + "pivot": [ + 47, + 51 + ], + "rest": { + "pos": [ + 120, + 560 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 120, + 560 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 360, + "pos": [ + 120, + 560 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 360 + } + ] + } + ] + }, + "opt_link": "pgloading_loop5.rat", + "pivot": [ + 47, + 40 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x0000c130", + "animated": true, + "rest": { + "pos": [ + 120, + 560 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 8 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 120, + 560 + ], + "scale": [ + 0, + 0 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 4, + "pos": [ + 120, + 560 + ], + "scale": [ + 75, + 75 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 0 + }, + { + "t": 6, + "pos": [ + 120, + 560 + ], + "scale": [ + 96, + 96 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xc0ffffff", + "rotation_deg": 0 + }, + { + "t": 7, + "pos": [ + 120, + 560 + ], + "scale": [ + 99, + 99 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xe0ffffff", + "rotation_deg": 0 + }, + { + "t": 8, + "pos": [ + 120, + 560 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 32, + "pos": [ + 120, + 560 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 38, + "pos": [ + 120, + 560 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 6, + "id": "pgloading_loop5", + "declared": "pgloading_loop5.rat", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/build_15/pgloading_ring.png", + "leaf": { + "record": "pgloading_loop5.rat", + "loop_length_units": 300, + "elements": [ + { + "id": "pgloading_ring", + "declared": "pgloading_ring.t32", + "sprite": "sprites/title/build_15/pgloading_ring.png", + "blend_additive": true, + "pivot": [ + 166, + 170 + ], + "rest": { + "pos": [ + 1, + 444 + ], + "scale": [ + 0, + 0 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 1, + 444 + ], + "scale": [ + 0, + 0 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 30, + "pos": [ + 1, + 444 + ], + "scale": [ + 0, + 0 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 55, + "pos": [ + 1, + 444 + ], + "scale": [ + 250, + 250 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 110, + "pos": [ + 1, + 444 + ], + "scale": [ + 800, + 800 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 130, + "pos": [ + 1, + 444 + ], + "scale": [ + 1000, + 1000 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 300, + "pos": [ + 1, + 444 + ], + "scale": [ + 1000, + 1000 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + } + ] + }, + "leaf_carries_geometry": true, + "pivot": [ + 563, + 382 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x0000c010", + "animated": true, + "rest": { + "pos": [ + 1, + 444 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x7fffffff", + "rotation_deg": 0, + "t": 24 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 1, + 444 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 24, + "pos": [ + 1, + 444 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x7fffffff", + "rotation_deg": 0 + }, + { + "t": 26, + "pos": [ + 1, + 444 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x7fffffff", + "rotation_deg": 0 + }, + { + "t": 32, + "pos": [ + 1, + 444 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 7, + "id": "pgloading_baseeff", + "declared": "pgloading_baseeff.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/build_15/pgloading_baseeff.png", + "pivot": [ + 320, + 180 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x0000c020", + "rest": { + "pos": [ + 320, + 180 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 320, + 180 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 32, + "pos": [ + 320, + 180 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 38, + "pos": [ + 320, + 180 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 8, + "id": "pgloading_eff01", + "declared": "pgloading_eff01.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/build_15/pgloading_eff01.png", + "pivot": [ + 166, + 72 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x0000c100", + "rest": { + "pos": [ + 202, + 528 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x60ffffff", + "rotation_deg": 0, + "t": 16 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 202, + 528 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 16, + "pos": [ + 202, + 528 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x60ffffff", + "rotation_deg": 0 + }, + { + "t": 32, + "pos": [ + 202, + 528 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x60ffffff", + "rotation_deg": 0 + }, + { + "t": 40, + "pos": [ + 202, + 528 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 9, + "id": "pgloading_eff02", + "declared": "pgloading_eff02.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/build_15/pgloading_eff02.png", + "pivot": [ + 94, + 93 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x0000c100", + "rest": { + "pos": [ + 74, + 518 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x60ffffff", + "rotation_deg": 0, + "t": 22 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 74, + 518 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 16, + "pos": [ + 74, + 518 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 22, + "pos": [ + 74, + 518 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x60ffffff", + "rotation_deg": 0 + }, + { + "t": 28, + "pos": [ + 74, + 518 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x60ffffff", + "rotation_deg": 0 + }, + { + "t": 34, + "pos": [ + 74, + 518 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + } + ], + "paint_order": [ + 0, + 6, + 7, + 8, + 9, + 1, + 5, + 4, + 2, + 3 + ], + "buttons": [], + "settle_window": [ + 40, + 48, + 44 + ], + "unresolved": [ + "keyframe_time_unit", + "paint_order_ties", + "fade_out_duration" + ] +} diff --git a/export-probe/screens/title/developer_logos.json b/export-probe/screens/title/developer_logos.json new file mode 100644 index 00000000..82756686 --- /dev/null +++ b/export-probe/screens/title/developer_logos.json @@ -0,0 +1,734 @@ +{ + "format": "sylpheed.screen/3", + "exporter": "sylpheed-export 0.1.0", + "formats_rev": "8b6dbcf", + "source": { + "archive": "dat/GP_TITLE.pak", + "entry": 11, + "build": 11 + }, + "name": "developer_logos", + "name_source": "authored", + "name_why": "The GAME ARTS / SETA / studio anima logos -- the developer splash, shown after the publisher wordmark. HANDOFF Q2 and the RE agent's 2026-08-29 render grid; draws 7/7 elements. 📌 SOURCE, added 2026-09-01 in the uncited-why backfill: the four bundles are identified in docs/re/ui-title-build-map.md, and the ordinal-versus-entry distinction this entry depends on is docs/re/structures/build-ordinal-vs-entry.md. ⚠️ The sibling references below (\"as entry 10, region twin\") are a citation form too -- they point at another entry in this file rather than at a document, and forcing a path onto them would be mislabelling to satisfy a counter.", + "design": [ + 1280, + 720 + ], + "elements": [ + { + "index": 0, + "id": "palogo_eff0", + "declared": "palogo_eff0.prm", + "role": "primitive", + "kind_raw": "0x10", + "pivot": [ + 640, + 360 + ], + "size": [ + 1280, + 720 + ], + "layer_source": "implied", + "layer": "0x00000000", + "rest": { + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xff000000", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xff000000", + "rotation_deg": 0 + } + ] + }, + { + "index": 1, + "id": "palogo_gamearts", + "declared": "palogo_gamearts.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/developer_logos/palogo_gamearts.png", + "pivot": [ + 250, + 36 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x0000a110", + "rest": { + "pos": [ + 390, + 164 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 30 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 390, + 164 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 15, + "pos": [ + 390, + 164 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 30, + "pos": [ + 390, + 164 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 190, + "pos": [ + 390, + 164 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 194, + "pos": [ + 390, + 164 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xe8ffffff", + "rotation_deg": 0 + }, + { + "t": 206, + "pos": [ + 390, + 164 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x20ffffff", + "rotation_deg": 0 + }, + { + "t": 210, + "pos": [ + 390, + 164 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 2, + "id": "palogo_gamearts_eff", + "declared": "palogo_gamearts_eff.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/developer_logos/palogo_gamearts_eff.png", + "pivot": [ + 260, + 46 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x0000a100", + "rest": { + "pos": [ + 379, + 154 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 15 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 379, + 154 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 15, + "pos": [ + 379, + 154 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 30, + "pos": [ + 379, + 154 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 45, + "pos": [ + 379, + 154 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 3, + "id": "palogo_seta", + "declared": "palogo_seta.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/developer_logos/palogo_seta.png", + "pivot": [ + 120, + 44 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x0000a110", + "rest": { + "pos": [ + 521, + 316 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 30 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 521, + 316 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 15, + "pos": [ + 521, + 316 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 30, + "pos": [ + 521, + 316 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 190, + "pos": [ + 521, + 316 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 194, + "pos": [ + 521, + 316 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xe8ffffff", + "rotation_deg": 0 + }, + { + "t": 206, + "pos": [ + 521, + 316 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x20ffffff", + "rotation_deg": 0 + }, + { + "t": 210, + "pos": [ + 521, + 316 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 4, + "id": "palogo_seta_eff", + "declared": "palogo_seta_eff.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/developer_logos/palogo_seta_eff.png", + "pivot": [ + 130, + 55 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x0000a100", + "rest": { + "pos": [ + 511, + 305 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 15 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 511, + 305 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 15, + "pos": [ + 511, + 305 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 30, + "pos": [ + 511, + 305 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 45, + "pos": [ + 511, + 305 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 5, + "id": "palogo_anima", + "declared": "palogo_anima.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/developer_logos/palogo_anima.png", + "pivot": [ + 194, + 68 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x0000a110", + "rest": { + "pos": [ + 446, + 449 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 30 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 446, + 449 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 15, + "pos": [ + 446, + 449 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 30, + "pos": [ + 446, + 449 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 190, + "pos": [ + 446, + 449 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 194, + "pos": [ + 446, + 449 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xe8ffffff", + "rotation_deg": 0 + }, + { + "t": 206, + "pos": [ + 446, + 449 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x20ffffff", + "rotation_deg": 0 + }, + { + "t": 210, + "pos": [ + 446, + 449 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 6, + "id": "palogo_anima_eff", + "declared": "palogo_anima_eff.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/developer_logos/palogo_anima_eff.png", + "pivot": [ + 204, + 78 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x0000a100", + "rest": { + "pos": [ + 435, + 440 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xd4ffffff", + "rotation_deg": 0, + "t": 30 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 435, + 440 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 15, + "pos": [ + 435, + 440 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 30, + "pos": [ + 435, + 440 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xd4ffffff", + "rotation_deg": 0 + }, + { + "t": 45, + "pos": [ + 435, + 440 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + } + ], + "paint_order": [ + 0, + 2, + 4, + 6, + 1, + 3, + 5 + ], + "buttons": [], + "settle_window": [ + 45, + 190, + 117 + ], + "unresolved": [ + "keyframe_time_unit", + "paint_order_ties", + "fade_out_duration" + ] +} diff --git a/export-probe/screens/title/developer_logos_r.json b/export-probe/screens/title/developer_logos_r.json new file mode 100644 index 00000000..7b0c8834 --- /dev/null +++ b/export-probe/screens/title/developer_logos_r.json @@ -0,0 +1,734 @@ +{ + "format": "sylpheed.screen/3", + "exporter": "sylpheed-export 0.1.0", + "formats_rev": "8b6dbcf", + "source": { + "archive": "dat/GP_TITLE.pak", + "entry": 14, + "build": 14 + }, + "name": "developer_logos_r", + "name_source": "authored", + "name_why": "The region twin of entry 11, as 13 is to 10. 📌 SOURCE, added 2026-09-01 in the uncited-why backfill: the four bundles are identified in docs/re/ui-title-build-map.md, and the ordinal-versus-entry distinction this entry depends on is docs/re/structures/build-ordinal-vs-entry.md. ⚠️ The sibling references below (\"as entry 10, region twin\") are a citation form too -- they point at another entry in this file rather than at a document, and forcing a path onto them would be mislabelling to satisfy a counter.", + "design": [ + 1280, + 720 + ], + "elements": [ + { + "index": 0, + "id": "palogo_eff0", + "declared": "palogo_eff0.prm", + "role": "primitive", + "kind_raw": "0x10", + "pivot": [ + 640, + 360 + ], + "size": [ + 1280, + 720 + ], + "layer_source": "implied", + "layer": "0x00000000", + "rest": { + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xff000000", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xff000000", + "rotation_deg": 0 + } + ] + }, + { + "index": 1, + "id": "palogo_gamearts", + "declared": "palogo_gamearts.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/developer_logos_r/palogo_gamearts.png", + "pivot": [ + 250, + 36 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x0000a110", + "rest": { + "pos": [ + 390, + 164 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 30 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 390, + 164 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 15, + "pos": [ + 390, + 164 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 30, + "pos": [ + 390, + 164 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 190, + "pos": [ + 390, + 164 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 194, + "pos": [ + 390, + 164 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xe8ffffff", + "rotation_deg": 0 + }, + { + "t": 206, + "pos": [ + 390, + 164 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x20ffffff", + "rotation_deg": 0 + }, + { + "t": 210, + "pos": [ + 390, + 164 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 2, + "id": "palogo_gamearts_eff", + "declared": "palogo_gamearts_eff.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/developer_logos_r/palogo_gamearts_eff.png", + "pivot": [ + 260, + 46 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x0000a100", + "rest": { + "pos": [ + 379, + 154 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 15 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 379, + 154 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 15, + "pos": [ + 379, + 154 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 30, + "pos": [ + 379, + 154 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 45, + "pos": [ + 379, + 154 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 3, + "id": "palogo_seta", + "declared": "palogo_seta.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/developer_logos_r/palogo_seta.png", + "pivot": [ + 120, + 44 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x0000a110", + "rest": { + "pos": [ + 521, + 316 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 30 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 521, + 316 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 15, + "pos": [ + 521, + 316 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 30, + "pos": [ + 521, + 316 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 190, + "pos": [ + 521, + 316 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 194, + "pos": [ + 521, + 316 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xe8ffffff", + "rotation_deg": 0 + }, + { + "t": 206, + "pos": [ + 521, + 316 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x20ffffff", + "rotation_deg": 0 + }, + { + "t": 210, + "pos": [ + 521, + 316 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 4, + "id": "palogo_seta_eff", + "declared": "palogo_seta_eff.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/developer_logos_r/palogo_seta_eff.png", + "pivot": [ + 130, + 55 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x0000a100", + "rest": { + "pos": [ + 511, + 305 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 15 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 511, + 305 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 15, + "pos": [ + 511, + 305 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 30, + "pos": [ + 511, + 305 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 45, + "pos": [ + 511, + 305 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 5, + "id": "palogo_anima", + "declared": "palogo_anima.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/developer_logos_r/palogo_anima.png", + "pivot": [ + 194, + 68 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x0000a110", + "rest": { + "pos": [ + 446, + 449 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 30 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 446, + 449 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 15, + "pos": [ + 446, + 449 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 30, + "pos": [ + 446, + 449 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 190, + "pos": [ + 446, + 449 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 194, + "pos": [ + 446, + 449 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xe8ffffff", + "rotation_deg": 0 + }, + { + "t": 206, + "pos": [ + 446, + 449 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x20ffffff", + "rotation_deg": 0 + }, + { + "t": 210, + "pos": [ + 446, + 449 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 6, + "id": "palogo_anima_eff", + "declared": "palogo_anima_eff.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/developer_logos_r/palogo_anima_eff.png", + "pivot": [ + 204, + 78 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x0000a100", + "rest": { + "pos": [ + 435, + 440 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xd4ffffff", + "rotation_deg": 0, + "t": 30 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 435, + 440 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 15, + "pos": [ + 435, + 440 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 30, + "pos": [ + 435, + 440 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xd4ffffff", + "rotation_deg": 0 + }, + { + "t": 45, + "pos": [ + 435, + 440 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + } + ], + "paint_order": [ + 0, + 2, + 4, + 6, + 1, + 3, + 5 + ], + "buttons": [], + "settle_window": [ + 45, + 190, + 117 + ], + "unresolved": [ + "keyframe_time_unit", + "paint_order_ties", + "fade_out_duration" + ] +} diff --git a/export-probe/screens/title/extras.json b/export-probe/screens/title/extras.json new file mode 100644 index 00000000..4bd046ea --- /dev/null +++ b/export-probe/screens/title/extras.json @@ -0,0 +1,2305 @@ +{ + "format": "sylpheed.screen/3", + "exporter": "sylpheed-export 0.1.0", + "formats_rev": "8b6dbcf", + "source": { + "archive": "dat/GP_TITLE.pak", + "entry": 6, + "build": 6 + }, + "name": "extras", + "name_source": "authored", + "name_why": "HANDOFF Q2: builds 6/9 are the EXTRAS submenu, the only submenu inside this archive. Measured against a fresh EXTRAS capture. 📌 SOURCE, added 2026-09-01 in the uncited-why backfill: the four bundles are identified in docs/re/ui-title-build-map.md, and the ordinal-versus-entry distinction this entry depends on is docs/re/structures/build-ordinal-vs-entry.md. ⚠️ The sibling references below (\"as entry 10, region twin\") are a citation form too -- they point at another entry in this file rather than at a document, and forcing a path onto them would be mislabelling to satisfy a counter.", + "design": [ + 1280, + 720 + ], + "elements": [ + { + "index": 0, + "id": "ptframe3", + "declared": "ptframe3.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/extras/ptframe3.png", + "pivot": [ + 123, + 110 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x00008050", + "rest": { + "pos": [ + 440, + 230 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 24 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 620, + 230 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 16, + "pos": [ + 620, + 230 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 20, + "pos": [ + 490, + 230 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 0 + }, + { + "t": 22, + "pos": [ + 445, + 230 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xc0ffffff", + "rotation_deg": 0 + }, + { + "t": 24, + "pos": [ + 440, + 230 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 56, + "pos": [ + 440, + 230 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 64, + "pos": [ + 440, + 230 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 1, + "id": "ptframe4", + "declared": "ptframe4.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/extras/ptframe4.png", + "pivot": [ + 128, + 105 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x00008050", + "rest": { + "pos": [ + 584, + 318 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 24 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 404, + 318 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 16, + "pos": [ + 404, + 318 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 20, + "pos": [ + 534, + 318 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 0 + }, + { + "t": 22, + "pos": [ + 579, + 318 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xc0ffffff", + "rotation_deg": 0 + }, + { + "t": 24, + "pos": [ + 584, + 318 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 56, + "pos": [ + 584, + 318 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 64, + "pos": [ + 584, + 318 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 2, + "id": "ptbtn11", + "declared": "ptbtn11.rat", + "role": "button", + "kind_raw": "0x3002", + "sprite": "sprites/title/extras/ptbtn11.png", + "focus_sprite": "sprites/title/extras/ptbtn11f.png", + "focus": { + "record": "ptbtn11f.rat", + "loop_length_units": 120, + "elements": [ + { + "id": "ptbtn11f", + "declared": "ptbtn11f.t32", + "sprite": "sprites/title/extras/ptbtn11f.png", + "blend_additive": false, + "pivot": [ + 135, + 28 + ], + "rest": { + "pos": [ + 525, + 275 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 525, + 275 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + }, + { + "id": "ptbtneff02", + "declared": "ptbtneff02.t32", + "sprite": "sprites/title/extras/ptbtneff02.png", + "blend_additive": false, + "pivot": [ + 21, + 25 + ], + "rest": { + "pos": [ + 490, + 276 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 490, + 276 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 120, + "pos": [ + 490, + 276 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 360 + } + ] + } + ] + }, + "leaf": { + "record": "ptbtn11.rat", + "loop_length_units": 120, + "elements": [ + { + "id": "ptbtn11", + "declared": "ptbtn11.t32", + "sprite": "sprites/title/extras/ptbtn11.png", + "blend_additive": false, + "pivot": [ + 128, + 22 + ], + "rest": { + "pos": [ + 532, + 282 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 532, + 282 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + } + ] + }, + "opt_link": "ptbtn11f.rat", + "pivot": [ + 128, + 22 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x00008110", + "rest": { + "pos": [ + 532, + 282 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 34 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 532, + 262 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 28, + "pos": [ + 532, + 262 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 31, + "pos": [ + 532, + 277 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 0 + }, + { + "t": 34, + "pos": [ + 532, + 282 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 56, + "pos": [ + 532, + 282 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 60, + "pos": [ + 532, + 282 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 3, + "id": "ptbtn12", + "declared": "ptbtn12.rat", + "role": "button", + "kind_raw": "0x3002", + "sprite": "sprites/title/extras/ptbtn12.png", + "focus_sprite": "sprites/title/extras/ptbtn12f.png", + "focus": { + "record": "ptbtn12f.rat", + "loop_length_units": 120, + "elements": [ + { + "id": "ptbtneff02", + "declared": "ptbtneff02.t32", + "sprite": "sprites/title/extras/ptbtneff02.png", + "blend_additive": false, + "pivot": [ + 21, + 25 + ], + "rest": { + "pos": [ + 490, + 356 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 490, + 356 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 120, + "pos": [ + 490, + 356 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 360 + } + ] + }, + { + "id": "ptbtn12f", + "declared": "ptbtn12f.t32", + "sprite": "sprites/title/extras/ptbtn12f.png", + "blend_additive": false, + "pivot": [ + 132, + 28 + ], + "rest": { + "pos": [ + 525, + 355 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 525, + 355 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + } + ] + }, + "leaf": { + "record": "ptbtn12.rat", + "loop_length_units": 120, + "elements": [ + { + "id": "ptbtn12", + "declared": "ptbtn12.t32", + "sprite": "sprites/title/extras/ptbtn12.png", + "blend_additive": false, + "pivot": [ + 126, + 22 + ], + "rest": { + "pos": [ + 532, + 362 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 532, + 362 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + } + ] + }, + "opt_link": "ptbtn12f.rat", + "pivot": [ + 126, + 22 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x00008110", + "rest": { + "pos": [ + 532, + 362 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 36 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 532, + 342 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 30, + "pos": [ + 532, + 342 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 33, + "pos": [ + 532, + 357 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 0 + }, + { + "t": 36, + "pos": [ + 532, + 362 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 55, + "pos": [ + 532, + 362 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 59, + "pos": [ + 532, + 362 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 4, + "id": "ptbtn13", + "declared": "ptbtn13.rat", + "role": "button", + "kind_raw": "0x3002", + "sprite": "sprites/title/extras/ptbtn13.png", + "focus_sprite": "sprites/title/extras/ptbtn13f.png", + "focus": { + "record": "ptbtn13f.rat", + "loop_length_units": 120, + "elements": [ + { + "id": "ptbtneff02", + "declared": "ptbtneff02.t32", + "sprite": "sprites/title/extras/ptbtneff02.png", + "blend_additive": false, + "pivot": [ + 21, + 25 + ], + "rest": { + "pos": [ + 490, + 436 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 490, + 436 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 120, + "pos": [ + 490, + 436 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 360 + } + ] + }, + { + "id": "ptbtn13f", + "declared": "ptbtn13f.t32", + "sprite": "sprites/title/extras/ptbtn13f.png", + "blend_additive": false, + "pivot": [ + 48, + 28 + ], + "rest": { + "pos": [ + 525, + 435 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 525, + 435 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + } + ] + }, + "leaf": { + "record": "ptbtn13.rat", + "loop_length_units": 120, + "elements": [ + { + "id": "ptbtn13", + "declared": "ptbtn13.t32", + "sprite": "sprites/title/extras/ptbtn13.png", + "blend_additive": false, + "pivot": [ + 41, + 22 + ], + "rest": { + "pos": [ + 532, + 442 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 532, + 442 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + } + ] + }, + "opt_link": "ptbtn13f.rat", + "pivot": [ + 41, + 22 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x00008110", + "rest": { + "pos": [ + 532, + 442 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 38 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 532, + 422 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 32, + "pos": [ + 532, + 422 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 35, + "pos": [ + 532, + 437 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 0 + }, + { + "t": 38, + "pos": [ + 532, + 442 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 54, + "pos": [ + 532, + 442 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 58, + "pos": [ + 532, + 442 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 5, + "id": "ptmsg2", + "declared": "ptmsg2.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/extras/ptmsg2.png", + "pivot": [ + 192, + 19 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x00008100", + "rest": { + "pos": [ + 467, + 545 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 50 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 467, + 545 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 38, + "pos": [ + 467, + 545 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 50, + "pos": [ + 467, + 545 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 52, + "pos": [ + 467, + 545 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 58, + "pos": [ + 467, + 545 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 6, + "id": "pteff20", + "declared": "pteff20.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/extras/pteff20.png", + "pivot": [ + 154, + 130 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x00008041", + "rest": { + "pos": [ + 486, + 250 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 0, + "t": 36 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 486, + 250 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 24, + "pos": [ + 486, + 250 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 36, + "pos": [ + 486, + 250 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 0 + }, + { + "t": 54, + "pos": [ + 486, + 250 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 0 + }, + { + "t": 62, + "pos": [ + 486, + 250 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 7, + "id": "pteff21", + "declared": "pteff21.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/extras/pteff21.png", + "pivot": [ + 202, + 3 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x00008050", + "rest": { + "pos": [ + 438, + 143 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 8 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 438, + 143 + ], + "scale": [ + 300, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 8, + "pos": [ + 438, + 143 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 58, + "pos": [ + 438, + 143 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 65, + "pos": [ + 438, + 143 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 8, + "id": "pteff22", + "declared": "pteff22.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/extras/pteff22.png", + "pivot": [ + 212, + 4 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x00008050", + "rest": { + "pos": [ + 428, + 133 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 14 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 428, + 133 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 8, + "pos": [ + 428, + 133 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 14, + "pos": [ + 428, + 133 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 56, + "pos": [ + 428, + 133 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 63, + "pos": [ + 428, + 133 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 9, + "id": "pteff23", + "declared": "pteff23.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/extras/pteff23.png", + "pivot": [ + 220, + 4 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x00008050", + "rest": { + "pos": [ + 420, + 123 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 22 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 420, + 123 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 14, + "pos": [ + 420, + 123 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 22, + "pos": [ + 420, + 123 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 54, + "pos": [ + 420, + 123 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 60, + "pos": [ + 420, + 123 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 10, + "id": "pttitle", + "declared": "pttitle.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/extras/pttitle.png", + "pivot": [ + 97, + 18 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x00008100", + "rest": { + "pos": [ + 549, + 100 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 24 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 549, + 90 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 16, + "pos": [ + 549, + 90 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 20, + "pos": [ + 549, + 98 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 0 + }, + { + "t": 24, + "pos": [ + 549, + 100 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 52, + "pos": [ + 549, + 100 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 58, + "pos": [ + 549, + 90 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 11, + "id": "ptbase", + "declared": "ptbase.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/extras/ptbase.png", + "pivot": [ + 320, + 180 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x00008000", + "rest": { + "pos": [ + 320, + 180 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 320, + 180 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 12, + "id": "pteff05", + "declared": "pteff05.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/extras/pteff05.png", + "pivot": [ + 640, + 360 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x00008020", + "rest": { + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 13, + "id": "pteff02", + "declared": "pteff02.prm", + "role": "primitive", + "kind_raw": "0x10", + "pivot": [ + 640, + 360 + ], + "size": [ + 1280, + 720 + ], + "layer_source": "implied", + "layer": "0x00008030", + "rest": { + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x40000000", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x40000000", + "rotation_deg": 0 + } + ] + }, + { + "index": 14, + "id": "ptloop01", + "declared": "ptloop01.rat", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/extras/pteff03.png", + "leaf": { + "record": "ptloop01.rat", + "loop_length_units": 600, + "elements": [ + { + "id": "pteff03", + "declared": "pteff03.t32", + "sprite": "sprites/title/extras/pteff03.png", + "blend_additive": true, + "pivot": [ + 200, + 90 + ], + "rest": { + "pos": [ + 1521, + 270 + ], + "scale": [ + 100, + 600 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 30, + "t": 540 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + -639, + 270 + ], + "scale": [ + 100, + 600 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 30 + }, + { + "t": 150, + "pos": [ + -39, + 270 + ], + "scale": [ + 100, + 600 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 30 + }, + { + "t": 540, + "pos": [ + 1521, + 270 + ], + "scale": [ + 100, + 600 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 30 + }, + { + "t": 600, + "pos": [ + 1521, + 270 + ], + "scale": [ + 100, + 600 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 30 + } + ] + } + ] + }, + "leaf_carries_geometry": true, + "opt_link": "ptloop02.rat", + "pivot": [ + 200, + 90 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x00008010", + "animated": true, + "rest": { + "pos": [ + 441, + 270 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 441, + 270 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 15, + "id": "ptloop02", + "declared": "ptloop02.rat", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/extras/pteff03a.png", + "leaf": { + "record": "ptloop02.rat", + "loop_length_units": 720, + "elements": [ + { + "id": "pteff03a", + "declared": "pteff03a.t32", + "sprite": "sprites/title/extras/pteff03a.png", + "blend_additive": true, + "pivot": [ + 200, + 90 + ], + "rest": { + "pos": [ + -839, + 270 + ], + "scale": [ + 100, + 800 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": -45, + "t": 630 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 1721, + 270 + ], + "scale": [ + 100, + 800 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": -45 + }, + { + "t": 150, + "pos": [ + 1111, + 270 + ], + "scale": [ + 100, + 800 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": -45 + }, + { + "t": 630, + "pos": [ + -839, + 270 + ], + "scale": [ + 100, + 800 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": -45 + }, + { + "t": 720, + "pos": [ + -839, + 270 + ], + "scale": [ + 100, + 800 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": -45 + } + ] + } + ] + }, + "leaf_carries_geometry": true, + "pivot": [ + 200, + 90 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x00008010", + "animated": true, + "rest": { + "pos": [ + 441, + 270 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 441, + 270 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 16, + "id": "pteff10", + "declared": "pteff10.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/extras/pteff10.png", + "pivot": [ + 204, + 72 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x00008040", + "rest": { + "pos": [ + 436, + 288 + ], + "scale": [ + 200, + 500 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 36 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 436, + 288 + ], + "scale": [ + 200, + 500 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 24, + "pos": [ + 436, + 288 + ], + "scale": [ + 200, + 500 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 36, + "pos": [ + 436, + 288 + ], + "scale": [ + 200, + 500 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 52, + "pos": [ + 436, + 288 + ], + "scale": [ + 200, + 500 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 63, + "pos": [ + 436, + 288 + ], + "scale": [ + 200, + 500 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 17, + "id": "pteff00", + "declared": "pteff00.prm", + "role": "primitive", + "kind_raw": "0x10", + "pivot": [ + 640, + 360 + ], + "size": [ + 1280, + 720 + ], + "layer_source": "implied", + "layer": "0xfffffffe", + "rest": { + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00000000", + "rotation_deg": 0, + "t": 12 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xff000000", + "rotation_deg": 0 + }, + { + "t": 12, + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00000000", + "rotation_deg": 0 + }, + { + "t": 64, + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00000000", + "rotation_deg": 0 + }, + { + "t": 74, + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xff000000", + "rotation_deg": 0 + } + ] + } + ], + "paint_order": [ + 11, + 14, + 15, + 12, + 13, + 16, + 6, + 0, + 1, + 7, + 8, + 9, + 5, + 10, + 2, + 3, + 4, + 17 + ], + "buttons": [ + "ptbtn11", + "ptbtn12", + "ptbtn13" + ], + "settle_window": [ + 38, + 50, + 44 + ], + "unresolved": [ + "keyframe_time_unit", + "paint_order_ties", + "fade_out_duration" + ] +} diff --git a/export-probe/screens/title/extras_jp.json b/export-probe/screens/title/extras_jp.json new file mode 100644 index 00000000..85bcfe90 --- /dev/null +++ b/export-probe/screens/title/extras_jp.json @@ -0,0 +1,2305 @@ +{ + "format": "sylpheed.screen/3", + "exporter": "sylpheed-export 0.1.0", + "formats_rev": "8b6dbcf", + "source": { + "archive": "dat/GP_TITLE.pak", + "entry": 9, + "build": 9 + }, + "name": "extras_jp", + "name_source": "authored", + "name_why": "HANDOFF Q2: the Japanese twin of build 6. 📌 SOURCE, added 2026-09-01 in the uncited-why backfill: the four bundles are identified in docs/re/ui-title-build-map.md, and the ordinal-versus-entry distinction this entry depends on is docs/re/structures/build-ordinal-vs-entry.md. ⚠️ The sibling references below (\"as entry 10, region twin\") are a citation form too -- they point at another entry in this file rather than at a document, and forcing a path onto them would be mislabelling to satisfy a counter.", + "design": [ + 1280, + 720 + ], + "elements": [ + { + "index": 0, + "id": "ptframe3", + "declared": "ptframe3.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/extras_jp/ptframe3.png", + "pivot": [ + 123, + 110 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x00008050", + "rest": { + "pos": [ + 440, + 230 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 24 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 620, + 230 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 16, + "pos": [ + 620, + 230 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 20, + "pos": [ + 490, + 230 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 0 + }, + { + "t": 22, + "pos": [ + 445, + 230 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xc0ffffff", + "rotation_deg": 0 + }, + { + "t": 24, + "pos": [ + 440, + 230 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 56, + "pos": [ + 440, + 230 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 64, + "pos": [ + 440, + 230 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 1, + "id": "ptframe4", + "declared": "ptframe4.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/extras_jp/ptframe4.png", + "pivot": [ + 128, + 105 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x00008050", + "rest": { + "pos": [ + 584, + 318 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 24 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 404, + 318 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 16, + "pos": [ + 404, + 318 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 20, + "pos": [ + 534, + 318 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 0 + }, + { + "t": 22, + "pos": [ + 579, + 318 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xc0ffffff", + "rotation_deg": 0 + }, + { + "t": 24, + "pos": [ + 584, + 318 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 56, + "pos": [ + 584, + 318 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 64, + "pos": [ + 584, + 318 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 2, + "id": "ptbtn11", + "declared": "ptbtn11.rat", + "role": "button", + "kind_raw": "0x3002", + "sprite": "sprites/title/extras_jp/ptbtn11.png", + "focus_sprite": "sprites/title/extras_jp/ptbtn11f.png", + "focus": { + "record": "ptbtn11f.rat", + "loop_length_units": 120, + "elements": [ + { + "id": "ptbtn11f", + "declared": "ptbtn11f.t32", + "sprite": "sprites/title/extras_jp/ptbtn11f.png", + "blend_additive": false, + "pivot": [ + 135, + 28 + ], + "rest": { + "pos": [ + 525, + 275 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 525, + 275 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + }, + { + "id": "ptbtneff02", + "declared": "ptbtneff02.t32", + "sprite": "sprites/title/extras_jp/ptbtneff02.png", + "blend_additive": false, + "pivot": [ + 21, + 25 + ], + "rest": { + "pos": [ + 490, + 276 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 490, + 276 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 120, + "pos": [ + 490, + 276 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 360 + } + ] + } + ] + }, + "leaf": { + "record": "ptbtn11.rat", + "loop_length_units": 120, + "elements": [ + { + "id": "ptbtn11", + "declared": "ptbtn11.t32", + "sprite": "sprites/title/extras_jp/ptbtn11.png", + "blend_additive": false, + "pivot": [ + 128, + 22 + ], + "rest": { + "pos": [ + 532, + 282 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 532, + 282 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + } + ] + }, + "opt_link": "ptbtn11f.rat", + "pivot": [ + 128, + 22 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x00008110", + "rest": { + "pos": [ + 532, + 282 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 34 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 532, + 262 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 28, + "pos": [ + 532, + 262 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 31, + "pos": [ + 532, + 277 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 0 + }, + { + "t": 34, + "pos": [ + 532, + 282 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 56, + "pos": [ + 532, + 282 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 60, + "pos": [ + 532, + 282 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 3, + "id": "ptbtn12", + "declared": "ptbtn12.rat", + "role": "button", + "kind_raw": "0x3002", + "sprite": "sprites/title/extras_jp/ptbtn12.png", + "focus_sprite": "sprites/title/extras_jp/ptbtn12f.png", + "focus": { + "record": "ptbtn12f.rat", + "loop_length_units": 120, + "elements": [ + { + "id": "ptbtneff02", + "declared": "ptbtneff02.t32", + "sprite": "sprites/title/extras_jp/ptbtneff02.png", + "blend_additive": false, + "pivot": [ + 21, + 25 + ], + "rest": { + "pos": [ + 490, + 356 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 490, + 356 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 120, + "pos": [ + 490, + 356 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 360 + } + ] + }, + { + "id": "ptbtn12f", + "declared": "ptbtn12f.t32", + "sprite": "sprites/title/extras_jp/ptbtn12f.png", + "blend_additive": false, + "pivot": [ + 132, + 28 + ], + "rest": { + "pos": [ + 525, + 355 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 525, + 355 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + } + ] + }, + "leaf": { + "record": "ptbtn12.rat", + "loop_length_units": 120, + "elements": [ + { + "id": "ptbtn12", + "declared": "ptbtn12.t32", + "sprite": "sprites/title/extras_jp/ptbtn12.png", + "blend_additive": false, + "pivot": [ + 126, + 22 + ], + "rest": { + "pos": [ + 532, + 362 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 532, + 362 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + } + ] + }, + "opt_link": "ptbtn12f.rat", + "pivot": [ + 126, + 22 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x00008110", + "rest": { + "pos": [ + 532, + 362 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 36 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 532, + 342 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 30, + "pos": [ + 532, + 342 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 33, + "pos": [ + 532, + 357 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 0 + }, + { + "t": 36, + "pos": [ + 532, + 362 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 55, + "pos": [ + 532, + 362 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 59, + "pos": [ + 532, + 362 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 4, + "id": "ptbtn13", + "declared": "ptbtn13.rat", + "role": "button", + "kind_raw": "0x3002", + "sprite": "sprites/title/extras_jp/ptbtn13.png", + "focus_sprite": "sprites/title/extras_jp/ptbtn13f.png", + "focus": { + "record": "ptbtn13f.rat", + "loop_length_units": 120, + "elements": [ + { + "id": "ptbtneff02", + "declared": "ptbtneff02.t32", + "sprite": "sprites/title/extras_jp/ptbtneff02.png", + "blend_additive": false, + "pivot": [ + 21, + 25 + ], + "rest": { + "pos": [ + 490, + 436 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 490, + 436 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 120, + "pos": [ + 490, + 436 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 360 + } + ] + }, + { + "id": "ptbtn13f", + "declared": "ptbtn13f.t32", + "sprite": "sprites/title/extras_jp/ptbtn13f.png", + "blend_additive": false, + "pivot": [ + 48, + 28 + ], + "rest": { + "pos": [ + 525, + 435 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 525, + 435 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + } + ] + }, + "leaf": { + "record": "ptbtn13.rat", + "loop_length_units": 120, + "elements": [ + { + "id": "ptbtn13", + "declared": "ptbtn13.t32", + "sprite": "sprites/title/extras_jp/ptbtn13.png", + "blend_additive": false, + "pivot": [ + 41, + 22 + ], + "rest": { + "pos": [ + 532, + 442 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 532, + 442 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + } + ] + }, + "opt_link": "ptbtn13f.rat", + "pivot": [ + 41, + 22 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x00008110", + "rest": { + "pos": [ + 532, + 442 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 38 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 532, + 422 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 32, + "pos": [ + 532, + 422 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 35, + "pos": [ + 532, + 437 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 0 + }, + { + "t": 38, + "pos": [ + 532, + 442 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 54, + "pos": [ + 532, + 442 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 58, + "pos": [ + 532, + 442 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 5, + "id": "ptmsg2", + "declared": "ptmsg2.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/extras_jp/ptmsg2.png", + "pivot": [ + 192, + 19 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x00008100", + "rest": { + "pos": [ + 449, + 545 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 50 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 449, + 545 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 38, + "pos": [ + 449, + 545 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 50, + "pos": [ + 449, + 545 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 52, + "pos": [ + 449, + 545 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 58, + "pos": [ + 449, + 545 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 6, + "id": "pteff20", + "declared": "pteff20.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/extras_jp/pteff20.png", + "pivot": [ + 154, + 130 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x00008041", + "rest": { + "pos": [ + 486, + 250 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 0, + "t": 36 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 486, + 250 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 24, + "pos": [ + 486, + 250 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 36, + "pos": [ + 486, + 250 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 0 + }, + { + "t": 54, + "pos": [ + 486, + 250 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 0 + }, + { + "t": 62, + "pos": [ + 486, + 250 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 7, + "id": "pteff21", + "declared": "pteff21.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/extras_jp/pteff21.png", + "pivot": [ + 202, + 3 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x00008050", + "rest": { + "pos": [ + 438, + 143 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 8 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 438, + 143 + ], + "scale": [ + 300, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 8, + "pos": [ + 438, + 143 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 58, + "pos": [ + 438, + 143 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 65, + "pos": [ + 438, + 143 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 8, + "id": "pteff22", + "declared": "pteff22.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/extras_jp/pteff22.png", + "pivot": [ + 212, + 4 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x00008050", + "rest": { + "pos": [ + 428, + 133 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 14 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 428, + 133 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 8, + "pos": [ + 428, + 133 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 14, + "pos": [ + 428, + 133 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 56, + "pos": [ + 428, + 133 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 63, + "pos": [ + 428, + 133 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 9, + "id": "pteff23", + "declared": "pteff23.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/extras_jp/pteff23.png", + "pivot": [ + 220, + 4 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x00008050", + "rest": { + "pos": [ + 420, + 123 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 22 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 420, + 123 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 14, + "pos": [ + 420, + 123 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 22, + "pos": [ + 420, + 123 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 54, + "pos": [ + 420, + 123 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 60, + "pos": [ + 420, + 123 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 10, + "id": "pttitle", + "declared": "pttitle.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/extras_jp/pttitle.png", + "pivot": [ + 97, + 18 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x00008100", + "rest": { + "pos": [ + 545, + 99 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 24 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 545, + 89 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 16, + "pos": [ + 545, + 89 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 20, + "pos": [ + 545, + 97 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 0 + }, + { + "t": 24, + "pos": [ + 545, + 99 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 52, + "pos": [ + 545, + 99 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 58, + "pos": [ + 545, + 89 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 11, + "id": "ptbase", + "declared": "ptbase.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/extras_jp/ptbase.png", + "pivot": [ + 320, + 180 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x00008000", + "rest": { + "pos": [ + 320, + 180 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 320, + 180 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 12, + "id": "pteff05", + "declared": "pteff05.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/extras_jp/pteff05.png", + "pivot": [ + 640, + 360 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x00008020", + "rest": { + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 13, + "id": "pteff02", + "declared": "pteff02.prm", + "role": "primitive", + "kind_raw": "0x10", + "pivot": [ + 640, + 360 + ], + "size": [ + 1280, + 720 + ], + "layer_source": "implied", + "layer": "0x00008030", + "rest": { + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x40000000", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x40000000", + "rotation_deg": 0 + } + ] + }, + { + "index": 14, + "id": "ptloop01", + "declared": "ptloop01.rat", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/extras_jp/pteff03.png", + "leaf": { + "record": "ptloop01.rat", + "loop_length_units": 600, + "elements": [ + { + "id": "pteff03", + "declared": "pteff03.t32", + "sprite": "sprites/title/extras_jp/pteff03.png", + "blend_additive": true, + "pivot": [ + 200, + 90 + ], + "rest": { + "pos": [ + 1521, + 270 + ], + "scale": [ + 100, + 600 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 30, + "t": 540 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + -639, + 270 + ], + "scale": [ + 100, + 600 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 30 + }, + { + "t": 150, + "pos": [ + -39, + 270 + ], + "scale": [ + 100, + 600 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 30 + }, + { + "t": 540, + "pos": [ + 1521, + 270 + ], + "scale": [ + 100, + 600 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 30 + }, + { + "t": 600, + "pos": [ + 1521, + 270 + ], + "scale": [ + 100, + 600 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 30 + } + ] + } + ] + }, + "leaf_carries_geometry": true, + "opt_link": "ptloop02.rat", + "pivot": [ + 200, + 90 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x00008010", + "animated": true, + "rest": { + "pos": [ + 441, + 270 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 441, + 270 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 15, + "id": "ptloop02", + "declared": "ptloop02.rat", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/extras_jp/pteff03a.png", + "leaf": { + "record": "ptloop02.rat", + "loop_length_units": 720, + "elements": [ + { + "id": "pteff03a", + "declared": "pteff03a.t32", + "sprite": "sprites/title/extras_jp/pteff03a.png", + "blend_additive": true, + "pivot": [ + 200, + 90 + ], + "rest": { + "pos": [ + -839, + 270 + ], + "scale": [ + 100, + 800 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": -45, + "t": 630 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 1721, + 270 + ], + "scale": [ + 100, + 800 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": -45 + }, + { + "t": 150, + "pos": [ + 1111, + 270 + ], + "scale": [ + 100, + 800 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": -45 + }, + { + "t": 630, + "pos": [ + -839, + 270 + ], + "scale": [ + 100, + 800 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": -45 + }, + { + "t": 720, + "pos": [ + -839, + 270 + ], + "scale": [ + 100, + 800 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": -45 + } + ] + } + ] + }, + "leaf_carries_geometry": true, + "pivot": [ + 200, + 90 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x00008010", + "animated": true, + "rest": { + "pos": [ + 441, + 270 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 441, + 270 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 16, + "id": "pteff10", + "declared": "pteff10.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/extras_jp/pteff10.png", + "pivot": [ + 204, + 72 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x00008040", + "rest": { + "pos": [ + 436, + 288 + ], + "scale": [ + 200, + 500 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 36 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 436, + 288 + ], + "scale": [ + 200, + 500 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 24, + "pos": [ + 436, + 288 + ], + "scale": [ + 200, + 500 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 36, + "pos": [ + 436, + 288 + ], + "scale": [ + 200, + 500 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 52, + "pos": [ + 436, + 288 + ], + "scale": [ + 200, + 500 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 63, + "pos": [ + 436, + 288 + ], + "scale": [ + 200, + 500 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 17, + "id": "pteff00", + "declared": "pteff00.prm", + "role": "primitive", + "kind_raw": "0x10", + "pivot": [ + 640, + 360 + ], + "size": [ + 1280, + 720 + ], + "layer_source": "implied", + "layer": "0xfffffffe", + "rest": { + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00000000", + "rotation_deg": 0, + "t": 12 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xff000000", + "rotation_deg": 0 + }, + { + "t": 12, + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00000000", + "rotation_deg": 0 + }, + { + "t": 64, + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00000000", + "rotation_deg": 0 + }, + { + "t": 74, + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xff000000", + "rotation_deg": 0 + } + ] + } + ], + "paint_order": [ + 11, + 14, + 15, + 12, + 13, + 16, + 6, + 0, + 1, + 7, + 8, + 9, + 5, + 10, + 2, + 3, + 4, + 17 + ], + "buttons": [ + "ptbtn11", + "ptbtn12", + "ptbtn13" + ], + "settle_window": [ + 38, + 50, + 44 + ], + "unresolved": [ + "keyframe_time_unit", + "paint_order_ties", + "fade_out_duration" + ] +} diff --git a/export-probe/screens/title/main_menu.json b/export-probe/screens/title/main_menu.json new file mode 100644 index 00000000..1bf657c5 --- /dev/null +++ b/export-probe/screens/title/main_menu.json @@ -0,0 +1,2428 @@ +{ + "format": "sylpheed.screen/3", + "exporter": "sylpheed-export 0.1.0", + "formats_rev": "8b6dbcf", + "source": { + "archive": "dat/GP_TITLE.pak", + "entry": 5, + "build": 5 + }, + "name": "main_menu", + "name_source": "authored", + "name_why": "HANDOFF Q2: builds 5/8 are the five-button main menu; 5 is English. Measured against a live capture. (An earlier reading called 8 a submenu and was withdrawn -- 8 is the Japanese main menu.) 📌 SOURCE, added 2026-09-01 in the uncited-why backfill: the four bundles are identified in docs/re/ui-title-build-map.md, and the ordinal-versus-entry distinction this entry depends on is docs/re/structures/build-ordinal-vs-entry.md. ⚠️ The sibling references below (\"as entry 10, region twin\") are a citation form too -- they point at another entry in this file rather than at a document, and forcing a path onto them would be mislabelling to satisfy a counter.", + "design": [ + 1280, + 720 + ], + "elements": [ + { + "index": 0, + "id": "pteff00", + "declared": "pteff00.prm", + "role": "primitive", + "kind_raw": "0x10", + "pivot": [ + 640, + 360 + ], + "size": [ + 1280, + 720 + ], + "layer_source": "implied", + "layer": "0xfffffffe", + "rest": { + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00000000", + "rotation_deg": 0, + "t": 12 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xff000000", + "rotation_deg": 0 + }, + { + "t": 12, + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00000000", + "rotation_deg": 0 + }, + { + "t": 70, + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00000000", + "rotation_deg": 0 + }, + { + "t": 80, + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xff000000", + "rotation_deg": 0 + } + ] + }, + { + "index": 1, + "id": "ptbase", + "declared": "ptbase.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/main_menu/ptbase.png", + "pivot": [ + 320, + 180 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x00008000", + "rest": { + "pos": [ + 320, + 180 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 320, + 180 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 2, + "id": "pteff05", + "declared": "pteff05.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/main_menu/pteff05.png", + "pivot": [ + 640, + 360 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x00008020", + "rest": { + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 3, + "id": "ptloop01", + "declared": "ptloop01.rat", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/main_menu/pteff03.png", + "leaf": { + "record": "ptloop01.rat", + "loop_length_units": 600, + "elements": [ + { + "id": "pteff03", + "declared": "pteff03.t32", + "sprite": "sprites/title/main_menu/pteff03.png", + "blend_additive": true, + "pivot": [ + 200, + 90 + ], + "rest": { + "pos": [ + 1521, + 270 + ], + "scale": [ + 100, + 600 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 30, + "t": 540 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + -639, + 270 + ], + "scale": [ + 100, + 600 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 30 + }, + { + "t": 150, + "pos": [ + -39, + 270 + ], + "scale": [ + 100, + 600 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 30 + }, + { + "t": 540, + "pos": [ + 1521, + 270 + ], + "scale": [ + 100, + 600 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 30 + }, + { + "t": 600, + "pos": [ + 1521, + 270 + ], + "scale": [ + 100, + 600 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 30 + } + ] + } + ] + }, + "leaf_carries_geometry": true, + "opt_link": "ptloop02.rat", + "pivot": [ + 200, + 90 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x00008010", + "animated": true, + "rest": { + "pos": [ + 441, + 270 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 441, + 270 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 4, + "id": "ptloop02", + "declared": "ptloop02.rat", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/main_menu/pteff03a.png", + "leaf": { + "record": "ptloop02.rat", + "loop_length_units": 720, + "elements": [ + { + "id": "pteff03a", + "declared": "pteff03a.t32", + "sprite": "sprites/title/main_menu/pteff03a.png", + "blend_additive": true, + "pivot": [ + 200, + 90 + ], + "rest": { + "pos": [ + -839, + 270 + ], + "scale": [ + 100, + 800 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": -45, + "t": 630 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 1721, + 270 + ], + "scale": [ + 100, + 800 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": -45 + }, + { + "t": 150, + "pos": [ + 1111, + 270 + ], + "scale": [ + 100, + 800 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": -45 + }, + { + "t": 630, + "pos": [ + -839, + 270 + ], + "scale": [ + 100, + 800 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": -45 + }, + { + "t": 720, + "pos": [ + -839, + 270 + ], + "scale": [ + 100, + 800 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": -45 + } + ] + } + ] + }, + "leaf_carries_geometry": true, + "opt_link": "ptbtn01.rat", + "pivot": [ + 200, + 90 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x00008010", + "animated": true, + "rest": { + "pos": [ + 441, + 270 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 441, + 270 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 5, + "id": "pteff02", + "declared": "pteff02.prm", + "role": "primitive", + "kind_raw": "0x10", + "pivot": [ + 640, + 360 + ], + "size": [ + 1280, + 720 + ], + "layer_source": "implied", + "layer": "0x00008030", + "rest": { + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x40000000", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x40000000", + "rotation_deg": 0 + } + ] + }, + { + "index": 6, + "id": "ptframe1", + "declared": "ptframe1.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/main_menu/ptframe1.png", + "pivot": [ + 124, + 140 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x00008050", + "rest": { + "pos": [ + 440, + 108 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 24 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 620, + 108 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 16, + "pos": [ + 620, + 108 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 20, + "pos": [ + 490, + 108 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 0 + }, + { + "t": 22, + "pos": [ + 445, + 108 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xc0ffffff", + "rotation_deg": 0 + }, + { + "t": 24, + "pos": [ + 440, + 108 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 62, + "pos": [ + 440, + 108 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 70, + "pos": [ + 440, + 108 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 7, + "id": "ptframe2", + "declared": "ptframe2.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/main_menu/ptframe2.png", + "pivot": [ + 128, + 156 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x00008050", + "rest": { + "pos": [ + 583, + 267 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 24 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 403, + 267 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 16, + "pos": [ + 403, + 267 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 20, + "pos": [ + 533, + 267 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 0 + }, + { + "t": 22, + "pos": [ + 578, + 267 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xc0ffffff", + "rotation_deg": 0 + }, + { + "t": 24, + "pos": [ + 583, + 267 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 62, + "pos": [ + 583, + 267 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 70, + "pos": [ + 583, + 267 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 8, + "id": "pteff10", + "declared": "pteff10.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/main_menu/pteff10.png", + "pivot": [ + 204, + 72 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x00008040", + "rest": { + "pos": [ + 436, + 288 + ], + "scale": [ + 200, + 500 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xc0ffffff", + "rotation_deg": 0, + "t": 36 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 436, + 288 + ], + "scale": [ + 200, + 500 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 24, + "pos": [ + 436, + 288 + ], + "scale": [ + 200, + 500 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 36, + "pos": [ + 436, + 288 + ], + "scale": [ + 200, + 500 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xc0ffffff", + "rotation_deg": 0 + }, + { + "t": 60, + "pos": [ + 436, + 288 + ], + "scale": [ + 200, + 500 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xc0ffffff", + "rotation_deg": 0 + }, + { + "t": 68, + "pos": [ + 436, + 288 + ], + "scale": [ + 200, + 500 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 9, + "id": "pteff12", + "declared": "pteff12.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/main_menu/pteff12.png", + "pivot": [ + 174, + 180 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x00008041", + "rest": { + "pos": [ + 467, + 180 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 36 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 467, + 180 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 24, + "pos": [ + 467, + 180 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 36, + "pos": [ + 467, + 180 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 60, + "pos": [ + 467, + 180 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 68, + "pos": [ + 467, + 180 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 10, + "id": "ptbtn01", + "declared": "ptbtn01.rat", + "role": "button", + "kind_raw": "0x3002", + "sprite": "sprites/title/main_menu/ptbtn01.png", + "focus_sprite": "sprites/title/main_menu/ptbtn01f.png", + "focus": { + "record": "ptbtn01f.rat", + "loop_length_units": 120, + "elements": [ + { + "id": "ptbtneff01", + "declared": "ptbtneff01.t32", + "sprite": "sprites/title/main_menu/ptbtneff01.png", + "blend_additive": false, + "pivot": [ + 21, + 25 + ], + "rest": { + "pos": [ + 500, + 156 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 500, + 156 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 120, + "pos": [ + 500, + 156 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 360 + } + ] + }, + { + "id": "ptbtn01f", + "declared": "ptbtn01f.t32", + "sprite": "sprites/title/main_menu/ptbtn01f.png", + "blend_additive": false, + "pivot": [ + 48, + 28 + ], + "rest": { + "pos": [ + 535, + 155 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 535, + 155 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + } + ] + }, + "leaf": { + "record": "ptbtn01.rat", + "loop_length_units": 120, + "elements": [ + { + "id": "ptbtn01", + "declared": "ptbtn01.t32", + "sprite": "sprites/title/main_menu/ptbtn01.png", + "blend_additive": false, + "pivot": [ + 42, + 22 + ], + "rest": { + "pos": [ + 542, + 162 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 542, + 162 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + } + ] + }, + "opt_link": "ptbtn01f.rat", + "pivot": [ + 42, + 22 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x00008110", + "rest": { + "pos": [ + 542, + 162 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 34 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 542, + 142 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 28, + "pos": [ + 542, + 142 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 31, + "pos": [ + 542, + 157 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 0 + }, + { + "t": 34, + "pos": [ + 542, + 162 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 64, + "pos": [ + 542, + 162 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 68, + "pos": [ + 542, + 162 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 11, + "id": "ptbtn02", + "declared": "ptbtn02.rat", + "role": "button", + "kind_raw": "0x3002", + "sprite": "sprites/title/main_menu/ptbtn02.png", + "focus_sprite": "sprites/title/main_menu/ptbtn02f.png", + "focus": { + "record": "ptbtn02f.rat", + "loop_length_units": 120, + "elements": [ + { + "id": "ptbtneff01", + "declared": "ptbtneff01.t32", + "sprite": "sprites/title/main_menu/ptbtneff01.png", + "blend_additive": false, + "pivot": [ + 21, + 25 + ], + "rest": { + "pos": [ + 500, + 236 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 500, + 236 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 120, + "pos": [ + 500, + 236 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 360 + } + ] + }, + { + "id": "ptbtn02f", + "declared": "ptbtn02f.t32", + "sprite": "sprites/title/main_menu/ptbtn02f.png", + "blend_additive": false, + "pivot": [ + 65, + 28 + ], + "rest": { + "pos": [ + 535, + 235 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 535, + 235 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + } + ] + }, + "leaf": { + "record": "ptbtn02.rat", + "loop_length_units": 120, + "elements": [ + { + "id": "ptbtn02", + "declared": "ptbtn02.t32", + "sprite": "sprites/title/main_menu/ptbtn02.png", + "blend_additive": false, + "pivot": [ + 58, + 22 + ], + "rest": { + "pos": [ + 542, + 242 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 542, + 242 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + } + ] + }, + "opt_link": "ptbtn02f.rat", + "pivot": [ + 58, + 22 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x00008110", + "rest": { + "pos": [ + 542, + 242 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 36 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 542, + 222 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 30, + "pos": [ + 542, + 222 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 33, + "pos": [ + 542, + 237 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 0 + }, + { + "t": 36, + "pos": [ + 542, + 242 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 63, + "pos": [ + 542, + 242 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 67, + "pos": [ + 542, + 242 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 12, + "id": "ptbtn03", + "declared": "ptbtn03.rat", + "role": "button", + "kind_raw": "0x3002", + "sprite": "sprites/title/main_menu/ptbtn03.png", + "focus_sprite": "sprites/title/main_menu/ptbtn03f.png", + "focus": { + "record": "ptbtn03f.rat", + "loop_length_units": 120, + "elements": [ + { + "id": "ptbtneff01", + "declared": "ptbtneff01.t32", + "sprite": "sprites/title/main_menu/ptbtneff01.png", + "blend_additive": false, + "pivot": [ + 21, + 25 + ], + "rest": { + "pos": [ + 500, + 316 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 500, + 316 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 120, + "pos": [ + 500, + 316 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 360 + } + ] + }, + { + "id": "ptbtn03f", + "declared": "ptbtn03f.t32", + "sprite": "sprites/title/main_menu/ptbtn03f.png", + "blend_additive": false, + "pivot": [ + 128, + 28 + ], + "rest": { + "pos": [ + 535, + 315 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 535, + 315 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + } + ] + }, + "leaf": { + "record": "ptbtn03.rat", + "loop_length_units": 120, + "elements": [ + { + "id": "ptbtn03", + "declared": "ptbtn03.t32", + "sprite": "sprites/title/main_menu/ptbtn03.png", + "blend_additive": false, + "pivot": [ + 121, + 22 + ], + "rest": { + "pos": [ + 542, + 322 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 542, + 322 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + } + ] + }, + "opt_link": "ptbtn03f.rat", + "pivot": [ + 121, + 22 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x00008110", + "rest": { + "pos": [ + 542, + 322 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 38 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 542, + 302 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 32, + "pos": [ + 542, + 302 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 35, + "pos": [ + 542, + 317 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 0 + }, + { + "t": 38, + "pos": [ + 542, + 322 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 62, + "pos": [ + 542, + 322 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 66, + "pos": [ + 542, + 322 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 13, + "id": "ptbtn04", + "declared": "ptbtn04.rat", + "role": "button", + "kind_raw": "0x3002", + "sprite": "sprites/title/main_menu/ptbtn04.png", + "focus_sprite": "sprites/title/main_menu/ptbtn04f.png", + "focus": { + "record": "ptbtn04f.rat", + "loop_length_units": 120, + "elements": [ + { + "id": "ptbtneff01", + "declared": "ptbtneff01.t32", + "sprite": "sprites/title/main_menu/ptbtneff01.png", + "blend_additive": false, + "pivot": [ + 21, + 25 + ], + "rest": { + "pos": [ + 500, + 396 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 500, + 396 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 120, + "pos": [ + 500, + 396 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 360 + } + ] + }, + { + "id": "ptbtn04f", + "declared": "ptbtn04f.t32", + "sprite": "sprites/title/main_menu/ptbtn04f.png", + "blend_additive": false, + "pivot": [ + 102, + 28 + ], + "rest": { + "pos": [ + 535, + 395 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 535, + 395 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + } + ] + }, + "leaf": { + "record": "ptbtn04.rat", + "loop_length_units": 120, + "elements": [ + { + "id": "ptbtn04", + "declared": "ptbtn04.t32", + "sprite": "sprites/title/main_menu/ptbtn04.png", + "blend_additive": false, + "pivot": [ + 96, + 22 + ], + "rest": { + "pos": [ + 542, + 402 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 542, + 402 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + } + ] + }, + "opt_link": "ptbtn04f.rat", + "pivot": [ + 96, + 22 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x00008110", + "rest": { + "pos": [ + 542, + 401 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 40 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 542, + 381 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 34, + "pos": [ + 542, + 381 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 37, + "pos": [ + 542, + 396 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 0 + }, + { + "t": 40, + "pos": [ + 542, + 401 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 61, + "pos": [ + 542, + 401 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 65, + "pos": [ + 542, + 401 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 14, + "id": "ptbtn05", + "declared": "ptbtn05.rat", + "role": "button", + "kind_raw": "0x3002", + "sprite": "sprites/title/main_menu/ptbtn05.png", + "focus_sprite": "sprites/title/main_menu/ptbtn05f.png", + "focus": { + "record": "ptbtn05f.rat", + "loop_length_units": 120, + "elements": [ + { + "id": "ptbtneff01", + "declared": "ptbtneff01.t32", + "sprite": "sprites/title/main_menu/ptbtneff01.png", + "blend_additive": false, + "pivot": [ + 21, + 25 + ], + "rest": { + "pos": [ + 500, + 476 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 500, + 476 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 120, + "pos": [ + 500, + 476 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 360 + } + ] + }, + { + "id": "ptbtn05f", + "declared": "ptbtn05f.t32", + "sprite": "sprites/title/main_menu/ptbtn05f.png", + "blend_additive": false, + "pivot": [ + 101, + 28 + ], + "rest": { + "pos": [ + 535, + 475 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 535, + 475 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + } + ] + }, + "leaf": { + "record": "ptbtn05.rat", + "loop_length_units": 120, + "elements": [ + { + "id": "ptbtn05", + "declared": "ptbtn05.t32", + "sprite": "sprites/title/main_menu/ptbtn05.png", + "blend_additive": false, + "pivot": [ + 94, + 22 + ], + "rest": { + "pos": [ + 542, + 482 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 542, + 482 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + } + ] + }, + "opt_link": "ptbtn05f.rat", + "pivot": [ + 94, + 22 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x00008110", + "rest": { + "pos": [ + 542, + 482 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 42 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 542, + 462 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 36, + "pos": [ + 542, + 462 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 39, + "pos": [ + 542, + 477 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 0 + }, + { + "t": 42, + "pos": [ + 542, + 482 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 60, + "pos": [ + 542, + 482 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 64, + "pos": [ + 542, + 482 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 15, + "id": "ptmsg", + "declared": "ptmsg.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/main_menu/ptmsg.png", + "pivot": [ + 123, + 19 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x00008100", + "rest": { + "pos": [ + 527, + 595 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 56 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 527, + 595 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 44, + "pos": [ + 527, + 595 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 56, + "pos": [ + 527, + 595 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 58, + "pos": [ + 527, + 595 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 64, + "pos": [ + 527, + 595 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + } + ], + "paint_order": [ + 1, + 3, + 4, + 2, + 5, + 8, + 9, + 6, + 7, + 15, + 10, + 11, + 12, + 13, + 14, + 0 + ], + "buttons": [ + "ptbtn01", + "ptbtn02", + "ptbtn03", + "ptbtn04", + "ptbtn05" + ], + "settle_window": [ + 44, + 56, + 50 + ], + "unresolved": [ + "keyframe_time_unit", + "paint_order_ties", + "fade_out_duration" + ] +} diff --git a/export-probe/screens/title/main_menu_jp.json b/export-probe/screens/title/main_menu_jp.json new file mode 100644 index 00000000..99e2e075 --- /dev/null +++ b/export-probe/screens/title/main_menu_jp.json @@ -0,0 +1,2428 @@ +{ + "format": "sylpheed.screen/3", + "exporter": "sylpheed-export 0.1.0", + "formats_rev": "8b6dbcf", + "source": { + "archive": "dat/GP_TITLE.pak", + "entry": 8, + "build": 8 + }, + "name": "main_menu_jp", + "name_source": "authored", + "name_why": "HANDOFF Q2: the Japanese twin of build 5. 📌 SOURCE, added 2026-09-01 in the uncited-why backfill: the four bundles are identified in docs/re/ui-title-build-map.md, and the ordinal-versus-entry distinction this entry depends on is docs/re/structures/build-ordinal-vs-entry.md. ⚠️ The sibling references below (\"as entry 10, region twin\") are a citation form too -- they point at another entry in this file rather than at a document, and forcing a path onto them would be mislabelling to satisfy a counter.", + "design": [ + 1280, + 720 + ], + "elements": [ + { + "index": 0, + "id": "pteff00", + "declared": "pteff00.prm", + "role": "primitive", + "kind_raw": "0x10", + "pivot": [ + 640, + 360 + ], + "size": [ + 1280, + 720 + ], + "layer_source": "implied", + "layer": "0xfffffffe", + "rest": { + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00000000", + "rotation_deg": 0, + "t": 12 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xff000000", + "rotation_deg": 0 + }, + { + "t": 12, + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00000000", + "rotation_deg": 0 + }, + { + "t": 70, + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00000000", + "rotation_deg": 0 + }, + { + "t": 80, + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xff000000", + "rotation_deg": 0 + } + ] + }, + { + "index": 1, + "id": "ptbase", + "declared": "ptbase.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/main_menu_jp/ptbase.png", + "pivot": [ + 320, + 180 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x00008000", + "rest": { + "pos": [ + 320, + 180 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 320, + 180 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 2, + "id": "pteff05", + "declared": "pteff05.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/main_menu_jp/pteff05.png", + "pivot": [ + 640, + 360 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x00008020", + "rest": { + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 3, + "id": "ptloop01", + "declared": "ptloop01.rat", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/main_menu_jp/pteff03.png", + "leaf": { + "record": "ptloop01.rat", + "loop_length_units": 600, + "elements": [ + { + "id": "pteff03", + "declared": "pteff03.t32", + "sprite": "sprites/title/main_menu_jp/pteff03.png", + "blend_additive": true, + "pivot": [ + 200, + 90 + ], + "rest": { + "pos": [ + 1521, + 270 + ], + "scale": [ + 100, + 600 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 30, + "t": 540 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + -639, + 270 + ], + "scale": [ + 100, + 600 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 30 + }, + { + "t": 150, + "pos": [ + -39, + 270 + ], + "scale": [ + 100, + 600 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 30 + }, + { + "t": 540, + "pos": [ + 1521, + 270 + ], + "scale": [ + 100, + 600 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 30 + }, + { + "t": 600, + "pos": [ + 1521, + 270 + ], + "scale": [ + 100, + 600 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 30 + } + ] + } + ] + }, + "leaf_carries_geometry": true, + "opt_link": "ptloop02.rat", + "pivot": [ + 200, + 90 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x00008010", + "animated": true, + "rest": { + "pos": [ + 441, + 270 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 441, + 270 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 4, + "id": "ptloop02", + "declared": "ptloop02.rat", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/main_menu_jp/pteff03a.png", + "leaf": { + "record": "ptloop02.rat", + "loop_length_units": 720, + "elements": [ + { + "id": "pteff03a", + "declared": "pteff03a.t32", + "sprite": "sprites/title/main_menu_jp/pteff03a.png", + "blend_additive": true, + "pivot": [ + 200, + 90 + ], + "rest": { + "pos": [ + -839, + 270 + ], + "scale": [ + 100, + 800 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": -45, + "t": 630 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 1721, + 270 + ], + "scale": [ + 100, + 800 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": -45 + }, + { + "t": 150, + "pos": [ + 1111, + 270 + ], + "scale": [ + 100, + 800 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": -45 + }, + { + "t": 630, + "pos": [ + -839, + 270 + ], + "scale": [ + 100, + 800 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": -45 + }, + { + "t": 720, + "pos": [ + -839, + 270 + ], + "scale": [ + 100, + 800 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": -45 + } + ] + } + ] + }, + "leaf_carries_geometry": true, + "opt_link": "ptbtn01.rat", + "pivot": [ + 200, + 90 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x00008010", + "animated": true, + "rest": { + "pos": [ + 441, + 270 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 441, + 270 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 5, + "id": "pteff02", + "declared": "pteff02.prm", + "role": "primitive", + "kind_raw": "0x10", + "pivot": [ + 640, + 360 + ], + "size": [ + 1280, + 720 + ], + "layer_source": "implied", + "layer": "0x00008030", + "rest": { + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x40000000", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x40000000", + "rotation_deg": 0 + } + ] + }, + { + "index": 6, + "id": "ptframe1", + "declared": "ptframe1.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/main_menu_jp/ptframe1.png", + "pivot": [ + 124, + 140 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x00008050", + "rest": { + "pos": [ + 440, + 108 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 24 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 620, + 108 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 16, + "pos": [ + 620, + 108 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 20, + "pos": [ + 490, + 108 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 0 + }, + { + "t": 22, + "pos": [ + 445, + 108 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xc0ffffff", + "rotation_deg": 0 + }, + { + "t": 24, + "pos": [ + 440, + 108 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 62, + "pos": [ + 440, + 108 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 70, + "pos": [ + 440, + 108 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 7, + "id": "ptframe2", + "declared": "ptframe2.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/main_menu_jp/ptframe2.png", + "pivot": [ + 128, + 156 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x00008050", + "rest": { + "pos": [ + 583, + 267 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 24 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 403, + 267 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 16, + "pos": [ + 403, + 267 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 20, + "pos": [ + 533, + 267 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 0 + }, + { + "t": 22, + "pos": [ + 578, + 267 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xc0ffffff", + "rotation_deg": 0 + }, + { + "t": 24, + "pos": [ + 583, + 267 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 62, + "pos": [ + 583, + 267 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 70, + "pos": [ + 583, + 267 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 8, + "id": "pteff10", + "declared": "pteff10.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/main_menu_jp/pteff10.png", + "pivot": [ + 204, + 72 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x00008040", + "rest": { + "pos": [ + 436, + 288 + ], + "scale": [ + 200, + 500 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xc0ffffff", + "rotation_deg": 0, + "t": 36 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 436, + 288 + ], + "scale": [ + 200, + 500 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 24, + "pos": [ + 436, + 288 + ], + "scale": [ + 200, + 500 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 36, + "pos": [ + 436, + 288 + ], + "scale": [ + 200, + 500 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xc0ffffff", + "rotation_deg": 0 + }, + { + "t": 60, + "pos": [ + 436, + 288 + ], + "scale": [ + 200, + 500 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xc0ffffff", + "rotation_deg": 0 + }, + { + "t": 68, + "pos": [ + 436, + 288 + ], + "scale": [ + 200, + 500 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 9, + "id": "pteff12", + "declared": "pteff12.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/main_menu_jp/pteff12.png", + "pivot": [ + 174, + 180 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x00008041", + "rest": { + "pos": [ + 467, + 180 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 36 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 467, + 180 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 24, + "pos": [ + 467, + 180 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 36, + "pos": [ + 467, + 180 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 60, + "pos": [ + 467, + 180 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 68, + "pos": [ + 467, + 180 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 10, + "id": "ptbtn01", + "declared": "ptbtn01.rat", + "role": "button", + "kind_raw": "0x3002", + "sprite": "sprites/title/main_menu_jp/ptbtn01.png", + "focus_sprite": "sprites/title/main_menu_jp/ptbtn01f.png", + "focus": { + "record": "ptbtn01f.rat", + "loop_length_units": 120, + "elements": [ + { + "id": "ptbtneff01", + "declared": "ptbtneff01.t32", + "sprite": "sprites/title/main_menu_jp/ptbtneff01.png", + "blend_additive": false, + "pivot": [ + 21, + 25 + ], + "rest": { + "pos": [ + 500, + 156 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 500, + 156 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 120, + "pos": [ + 500, + 156 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 360 + } + ] + }, + { + "id": "ptbtn01f", + "declared": "ptbtn01f.t32", + "sprite": "sprites/title/main_menu_jp/ptbtn01f.png", + "blend_additive": false, + "pivot": [ + 48, + 28 + ], + "rest": { + "pos": [ + 535, + 155 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 535, + 155 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + } + ] + }, + "leaf": { + "record": "ptbtn01.rat", + "loop_length_units": 120, + "elements": [ + { + "id": "ptbtn01", + "declared": "ptbtn01.t32", + "sprite": "sprites/title/main_menu_jp/ptbtn01.png", + "blend_additive": false, + "pivot": [ + 42, + 22 + ], + "rest": { + "pos": [ + 542, + 162 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 542, + 162 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + } + ] + }, + "opt_link": "ptbtn01f.rat", + "pivot": [ + 42, + 22 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x00008110", + "rest": { + "pos": [ + 542, + 162 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 34 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 542, + 142 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 28, + "pos": [ + 542, + 142 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 31, + "pos": [ + 542, + 157 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 0 + }, + { + "t": 34, + "pos": [ + 542, + 162 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 64, + "pos": [ + 542, + 162 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 68, + "pos": [ + 542, + 162 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 11, + "id": "ptbtn02", + "declared": "ptbtn02.rat", + "role": "button", + "kind_raw": "0x3002", + "sprite": "sprites/title/main_menu_jp/ptbtn02.png", + "focus_sprite": "sprites/title/main_menu_jp/ptbtn02f.png", + "focus": { + "record": "ptbtn02f.rat", + "loop_length_units": 120, + "elements": [ + { + "id": "ptbtneff01", + "declared": "ptbtneff01.t32", + "sprite": "sprites/title/main_menu_jp/ptbtneff01.png", + "blend_additive": false, + "pivot": [ + 21, + 25 + ], + "rest": { + "pos": [ + 500, + 236 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 500, + 236 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 120, + "pos": [ + 500, + 236 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 360 + } + ] + }, + { + "id": "ptbtn02f", + "declared": "ptbtn02f.t32", + "sprite": "sprites/title/main_menu_jp/ptbtn02f.png", + "blend_additive": false, + "pivot": [ + 65, + 28 + ], + "rest": { + "pos": [ + 535, + 235 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 535, + 235 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + } + ] + }, + "leaf": { + "record": "ptbtn02.rat", + "loop_length_units": 120, + "elements": [ + { + "id": "ptbtn02", + "declared": "ptbtn02.t32", + "sprite": "sprites/title/main_menu_jp/ptbtn02.png", + "blend_additive": false, + "pivot": [ + 58, + 22 + ], + "rest": { + "pos": [ + 542, + 242 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 542, + 242 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + } + ] + }, + "opt_link": "ptbtn02f.rat", + "pivot": [ + 58, + 22 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x00008110", + "rest": { + "pos": [ + 542, + 242 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 36 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 542, + 222 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 30, + "pos": [ + 542, + 222 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 33, + "pos": [ + 542, + 237 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 0 + }, + { + "t": 36, + "pos": [ + 542, + 242 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 63, + "pos": [ + 542, + 242 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 67, + "pos": [ + 542, + 242 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 12, + "id": "ptbtn03", + "declared": "ptbtn03.rat", + "role": "button", + "kind_raw": "0x3002", + "sprite": "sprites/title/main_menu_jp/ptbtn03.png", + "focus_sprite": "sprites/title/main_menu_jp/ptbtn03f.png", + "focus": { + "record": "ptbtn03f.rat", + "loop_length_units": 120, + "elements": [ + { + "id": "ptbtneff01", + "declared": "ptbtneff01.t32", + "sprite": "sprites/title/main_menu_jp/ptbtneff01.png", + "blend_additive": false, + "pivot": [ + 21, + 25 + ], + "rest": { + "pos": [ + 500, + 316 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 500, + 316 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 120, + "pos": [ + 500, + 316 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 360 + } + ] + }, + { + "id": "ptbtn03f", + "declared": "ptbtn03f.t32", + "sprite": "sprites/title/main_menu_jp/ptbtn03f.png", + "blend_additive": false, + "pivot": [ + 128, + 28 + ], + "rest": { + "pos": [ + 535, + 315 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 535, + 315 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + } + ] + }, + "leaf": { + "record": "ptbtn03.rat", + "loop_length_units": 120, + "elements": [ + { + "id": "ptbtn03", + "declared": "ptbtn03.t32", + "sprite": "sprites/title/main_menu_jp/ptbtn03.png", + "blend_additive": false, + "pivot": [ + 121, + 22 + ], + "rest": { + "pos": [ + 542, + 322 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 542, + 322 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + } + ] + }, + "opt_link": "ptbtn03f.rat", + "pivot": [ + 121, + 22 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x00008110", + "rest": { + "pos": [ + 542, + 322 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 38 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 542, + 302 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 32, + "pos": [ + 542, + 302 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 35, + "pos": [ + 542, + 317 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 0 + }, + { + "t": 38, + "pos": [ + 542, + 322 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 62, + "pos": [ + 542, + 322 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 66, + "pos": [ + 542, + 322 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 13, + "id": "ptbtn04", + "declared": "ptbtn04.rat", + "role": "button", + "kind_raw": "0x3002", + "sprite": "sprites/title/main_menu_jp/ptbtn04.png", + "focus_sprite": "sprites/title/main_menu_jp/ptbtn04f.png", + "focus": { + "record": "ptbtn04f.rat", + "loop_length_units": 120, + "elements": [ + { + "id": "ptbtneff01", + "declared": "ptbtneff01.t32", + "sprite": "sprites/title/main_menu_jp/ptbtneff01.png", + "blend_additive": false, + "pivot": [ + 21, + 25 + ], + "rest": { + "pos": [ + 500, + 396 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 500, + 396 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 120, + "pos": [ + 500, + 396 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 360 + } + ] + }, + { + "id": "ptbtn04f", + "declared": "ptbtn04f.t32", + "sprite": "sprites/title/main_menu_jp/ptbtn04f.png", + "blend_additive": false, + "pivot": [ + 102, + 28 + ], + "rest": { + "pos": [ + 535, + 394 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 535, + 394 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + } + ] + }, + "leaf": { + "record": "ptbtn04.rat", + "loop_length_units": 120, + "elements": [ + { + "id": "ptbtn04", + "declared": "ptbtn04.t32", + "sprite": "sprites/title/main_menu_jp/ptbtn04.png", + "blend_additive": false, + "pivot": [ + 96, + 22 + ], + "rest": { + "pos": [ + 542, + 401 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 542, + 401 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + } + ] + }, + "opt_link": "ptbtn04f.rat", + "pivot": [ + 96, + 22 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x00008110", + "rest": { + "pos": [ + 542, + 401 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 40 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 542, + 381 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 34, + "pos": [ + 542, + 381 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 37, + "pos": [ + 542, + 396 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 0 + }, + { + "t": 40, + "pos": [ + 542, + 401 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 61, + "pos": [ + 542, + 401 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 65, + "pos": [ + 542, + 401 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 14, + "id": "ptbtn05", + "declared": "ptbtn05.rat", + "role": "button", + "kind_raw": "0x3002", + "sprite": "sprites/title/main_menu_jp/ptbtn05.png", + "focus_sprite": "sprites/title/main_menu_jp/ptbtn05f.png", + "focus": { + "record": "ptbtn05f.rat", + "loop_length_units": 120, + "elements": [ + { + "id": "ptbtneff01", + "declared": "ptbtneff01.t32", + "sprite": "sprites/title/main_menu_jp/ptbtneff01.png", + "blend_additive": false, + "pivot": [ + 21, + 25 + ], + "rest": { + "pos": [ + 500, + 476 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 500, + 476 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 120, + "pos": [ + 500, + 476 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 360 + } + ] + }, + { + "id": "ptbtn05f", + "declared": "ptbtn05f.t32", + "sprite": "sprites/title/main_menu_jp/ptbtn05f.png", + "blend_additive": false, + "pivot": [ + 101, + 28 + ], + "rest": { + "pos": [ + 535, + 475 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 535, + 475 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + } + ] + }, + "leaf": { + "record": "ptbtn05.rat", + "loop_length_units": 120, + "elements": [ + { + "id": "ptbtn05", + "declared": "ptbtn05.t32", + "sprite": "sprites/title/main_menu_jp/ptbtn05.png", + "blend_additive": false, + "pivot": [ + 94, + 22 + ], + "rest": { + "pos": [ + 542, + 482 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 542, + 482 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + } + ] + }, + "opt_link": "ptbtn05f.rat", + "pivot": [ + 94, + 22 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x00008110", + "rest": { + "pos": [ + 542, + 482 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 42 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 542, + 462 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 36, + "pos": [ + 542, + 462 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 39, + "pos": [ + 542, + 477 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 0 + }, + { + "t": 42, + "pos": [ + 542, + 482 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 60, + "pos": [ + 542, + 482 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 64, + "pos": [ + 542, + 482 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 15, + "id": "ptmsg", + "declared": "ptmsg.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/main_menu_jp/ptmsg.png", + "pivot": [ + 123, + 19 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x00008100", + "rest": { + "pos": [ + 517, + 595 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 56 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 517, + 595 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 44, + "pos": [ + 517, + 595 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 56, + "pos": [ + 517, + 595 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 58, + "pos": [ + 517, + 595 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 64, + "pos": [ + 517, + 595 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + } + ], + "paint_order": [ + 1, + 3, + 4, + 2, + 5, + 8, + 9, + 6, + 7, + 15, + 10, + 11, + 12, + 13, + 14, + 0 + ], + "buttons": [ + "ptbtn01", + "ptbtn02", + "ptbtn03", + "ptbtn04", + "ptbtn05" + ], + "settle_window": [ + 44, + 56, + 50 + ], + "unresolved": [ + "keyframe_time_unit", + "paint_order_ties", + "fade_out_duration" + ] +} diff --git a/export-probe/screens/title/press_start.json b/export-probe/screens/title/press_start.json new file mode 100644 index 00000000..1ff897a1 --- /dev/null +++ b/export-probe/screens/title/press_start.json @@ -0,0 +1,326 @@ +{ + "format": "sylpheed.screen/3", + "exporter": "sylpheed-export 0.1.0", + "formats_rev": "8b6dbcf", + "source": { + "archive": "dat/GP_TITLE.pak", + "entry": 2, + "build": 2 + }, + "name": "press_start", + "name_source": "authored", + "name_why": "HANDOFF Q2: builds 2/3 are the PRESS (A) BUTTON plate -- a build of its own, composited over the title and faded in a beat later. English of the EN/JP pair. Measured against a live capture. 📌 SOURCE, added 2026-09-01 in the uncited-why backfill: the four bundles are identified in docs/re/ui-title-build-map.md, and the ordinal-versus-entry distinction this entry depends on is docs/re/structures/build-ordinal-vs-entry.md. ⚠️ The sibling references below (\"as entry 10, region twin\") are a citation form too -- they point at another entry in this file rather than at a document, and forcing a path onto them would be mislabelling to satisfy a counter.", + "design": [ + 1280, + 720 + ], + "elements": [ + { + "index": 0, + "id": "ptbtn00", + "declared": "ptbtn00.rat", + "role": "unknown", + "kind_raw": "0x73002", + "sprite": "sprites/title/press_start/ptbtn00.png", + "focus_sprite": "sprites/title/press_start/ptbtn00f.png", + "focus": { + "record": "ptbtn00f.rat", + "loop_length_units": 120, + "elements": [ + { + "id": "ptbtn00f", + "declared": "ptbtn00f.t32", + "sprite": "sprites/title/press_start/ptbtn00f.png", + "blend_additive": true, + "pivot": [ + 268, + 38 + ], + "rest": { + "pos": [ + 371, + 537 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x50ffffff", + "rotation_deg": 0, + "t": 35 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 371, + 537 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 6, + "pos": [ + 371, + 537 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x06ffffff", + "rotation_deg": 0 + }, + { + "t": 29, + "pos": [ + 371, + 537 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x4affffff", + "rotation_deg": 0 + }, + { + "t": 35, + "pos": [ + 371, + 537 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x50ffffff", + "rotation_deg": 0 + }, + { + "t": 50, + "pos": [ + 371, + 537 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x50ffffff", + "rotation_deg": 0 + }, + { + "t": 58, + "pos": [ + 371, + 537 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x4affffff", + "rotation_deg": 0 + }, + { + "t": 97, + "pos": [ + 371, + 537 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x06ffffff", + "rotation_deg": 0 + }, + { + "t": 105, + "pos": [ + 371, + 537 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + } + ] + }, + "leaf": { + "record": "ptbtn00.rat", + "loop_length_units": 120, + "elements": [ + { + "id": "ptbtn00", + "declared": "ptbtn00.t32", + "sprite": "sprites/title/press_start/ptbtn00.png", + "blend_additive": false, + "pivot": [ + 256, + 25 + ], + "rest": { + "pos": [ + 383, + 550 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 383, + 550 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + } + ] + }, + "opt_link": "ptbtn00f.rat", + "pivot": [ + 256, + 25 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x00008110", + "rest": { + "pos": [ + 383, + 550 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 236 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 383, + 560 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 214, + "pos": [ + 383, + 550 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 236, + "pos": [ + 383, + 550 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 238, + "pos": [ + 383, + 550 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 244, + "pos": [ + 383, + 550 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + } + ], + "paint_order": [ + 0 + ], + "buttons": [], + "settle_window": [ + 214, + 236, + 225 + ], + "unresolved": [ + "keyframe_time_unit", + "paint_order_ties", + "fade_out_duration" + ] +} diff --git a/export-probe/screens/title/press_start_jp.json b/export-probe/screens/title/press_start_jp.json new file mode 100644 index 00000000..213044b8 --- /dev/null +++ b/export-probe/screens/title/press_start_jp.json @@ -0,0 +1,326 @@ +{ + "format": "sylpheed.screen/3", + "exporter": "sylpheed-export 0.1.0", + "formats_rev": "8b6dbcf", + "source": { + "archive": "dat/GP_TITLE.pak", + "entry": 3, + "build": 3 + }, + "name": "press_start_jp", + "name_source": "authored", + "name_why": "HANDOFF Q2: the Japanese twin of build 2. Out of scope for this milestone; named so it is not mistaken for a screen we need. 📌 SOURCE, added 2026-09-01 in the uncited-why backfill: the four bundles are identified in docs/re/ui-title-build-map.md, and the ordinal-versus-entry distinction this entry depends on is docs/re/structures/build-ordinal-vs-entry.md. ⚠️ The sibling references below (\"as entry 10, region twin\") are a citation form too -- they point at another entry in this file rather than at a document, and forcing a path onto them would be mislabelling to satisfy a counter.", + "design": [ + 1280, + 720 + ], + "elements": [ + { + "index": 0, + "id": "ptbtn00", + "declared": "ptbtn00.rat", + "role": "unknown", + "kind_raw": "0x73002", + "sprite": "sprites/title/press_start_jp/ptbtn00.png", + "focus_sprite": "sprites/title/press_start_jp/ptbtn00f.png", + "focus": { + "record": "ptbtn00f.rat", + "loop_length_units": 120, + "elements": [ + { + "id": "ptbtn00f", + "declared": "ptbtn00f.t32", + "sprite": "sprites/title/press_start_jp/ptbtn00f.png", + "blend_additive": true, + "pivot": [ + 268, + 38 + ], + "rest": { + "pos": [ + 371, + 537 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x50ffffff", + "rotation_deg": 0, + "t": 35 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 371, + 537 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 6, + "pos": [ + 371, + 537 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x06ffffff", + "rotation_deg": 0 + }, + { + "t": 29, + "pos": [ + 371, + 537 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x4affffff", + "rotation_deg": 0 + }, + { + "t": 35, + "pos": [ + 371, + 537 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x50ffffff", + "rotation_deg": 0 + }, + { + "t": 50, + "pos": [ + 371, + 537 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x50ffffff", + "rotation_deg": 0 + }, + { + "t": 58, + "pos": [ + 371, + 537 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x4affffff", + "rotation_deg": 0 + }, + { + "t": 97, + "pos": [ + 371, + 537 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x06ffffff", + "rotation_deg": 0 + }, + { + "t": 105, + "pos": [ + 371, + 537 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + } + ] + }, + "leaf": { + "record": "ptbtn00.rat", + "loop_length_units": 120, + "elements": [ + { + "id": "ptbtn00", + "declared": "ptbtn00.t32", + "sprite": "sprites/title/press_start_jp/ptbtn00.png", + "blend_additive": false, + "pivot": [ + 256, + 25 + ], + "rest": { + "pos": [ + 383, + 550 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 383, + 550 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + } + ] + }, + "opt_link": "ptbtn00f.rat", + "pivot": [ + 256, + 25 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x00008110", + "rest": { + "pos": [ + 383, + 550 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 236 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 383, + 560 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 214, + "pos": [ + 383, + 550 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 236, + "pos": [ + 383, + 550 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 238, + "pos": [ + 383, + 550 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 244, + "pos": [ + 383, + 550 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + } + ], + "paint_order": [ + 0 + ], + "buttons": [], + "settle_window": [ + 214, + 236, + 225 + ], + "unresolved": [ + "keyframe_time_unit", + "paint_order_ties", + "fade_out_duration" + ] +} diff --git a/export-probe/screens/title/publisher_logo.json b/export-probe/screens/title/publisher_logo.json new file mode 100644 index 00000000..d57387a0 --- /dev/null +++ b/export-probe/screens/title/publisher_logo.json @@ -0,0 +1,299 @@ +{ + "format": "sylpheed.screen/3", + "exporter": "sylpheed-export 0.1.0", + "formats_rev": "8b6dbcf", + "source": { + "archive": "dat/GP_TITLE.pak", + "entry": 10, + "build": 10 + }, + "name": "publisher_logo", + "name_source": "authored", + "name_why": "The SQUARE ENIX PUBLISHER wordmark -- the FIRST thing the boot sequence shows, before the developer logos. Measured by the RE agent 2026-08-29, render grid at docs/re/captures/title-builds/splash-both-halves-rendered.png. Entries 10/13 are region twins distinguished by the trademark glyph; 10 carries the (TM). 📌 SOURCE, added 2026-09-01 in the uncited-why backfill: the four bundles are identified in docs/re/ui-title-build-map.md, and the ordinal-versus-entry distinction this entry depends on is docs/re/structures/build-ordinal-vs-entry.md. ⚠️ The sibling references below (\"as entry 10, region twin\") are a citation form too -- they point at another entry in this file rather than at a document, and forcing a path onto them would be mislabelling to satisfy a counter.", + "design": [ + 1280, + 720 + ], + "elements": [ + { + "index": 0, + "id": "palogo_eff0", + "declared": "palogo_eff0.prm", + "role": "primitive", + "kind_raw": "0x10", + "pivot": [ + 640, + 360 + ], + "size": [ + 1280, + 720 + ], + "layer_source": "implied", + "layer": "0x00000000", + "rest": { + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xff000000", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xff000000", + "rotation_deg": 0 + } + ] + }, + { + "index": 1, + "id": "palogo_sqex", + "declared": "palogo_sqex.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/publisher_logo/palogo_sqex.png", + "pivot": [ + 330, + 30 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x0000a110", + "rest": { + "pos": [ + 309, + 330 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 30 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 309, + 330 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 15, + "pos": [ + 309, + 330 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 30, + "pos": [ + 309, + 330 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 235, + "pos": [ + 309, + 330 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 239, + "pos": [ + 309, + 330 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xe8ffffff", + "rotation_deg": 0 + }, + { + "t": 251, + "pos": [ + 309, + 330 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x20ffffff", + "rotation_deg": 0 + }, + { + "t": 255, + "pos": [ + 309, + 330 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 2, + "id": "palogo_sqex_eff", + "declared": "palogo_sqex_eff.t32", + "role": "unknown", + "kind_raw": "0x1", + "sprite": "sprites/title/publisher_logo/palogo_sqex_eff.png", + "pivot": [ + 341, + 41 + ], + "parent": 1, + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x0000a100", + "rest": { + "pos": [ + 299, + 319 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xd4ffffff", + "rotation_deg": 0, + "t": 30 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 299, + 319 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 15, + "pos": [ + 299, + 319 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 30, + "pos": [ + 299, + 319 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xd4ffffff", + "rotation_deg": 0 + }, + { + "t": 45, + "pos": [ + 299, + 319 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + } + ], + "paint_order": [ + 0, + 2, + 1 + ], + "buttons": [], + "settle_window": [ + 45, + 235, + 140 + ], + "unresolved": [ + "keyframe_time_unit", + "paint_order_ties", + "fade_out_duration" + ] +} diff --git a/export-probe/screens/title/publisher_logo_r.json b/export-probe/screens/title/publisher_logo_r.json new file mode 100644 index 00000000..5ff9e784 --- /dev/null +++ b/export-probe/screens/title/publisher_logo_r.json @@ -0,0 +1,299 @@ +{ + "format": "sylpheed.screen/3", + "exporter": "sylpheed-export 0.1.0", + "formats_rev": "8b6dbcf", + "source": { + "archive": "dat/GP_TITLE.pak", + "entry": 13, + "build": 13 + }, + "name": "publisher_logo_r", + "name_source": "authored", + "name_why": "The region twin of entry 10, carrying (R) where 10 carries (TM). Named so it is not mistaken for a second screen the boot path needs. 📌 SOURCE, added 2026-09-01 in the uncited-why backfill: the four bundles are identified in docs/re/ui-title-build-map.md, and the ordinal-versus-entry distinction this entry depends on is docs/re/structures/build-ordinal-vs-entry.md. ⚠️ The sibling references below (\"as entry 10, region twin\") are a citation form too -- they point at another entry in this file rather than at a document, and forcing a path onto them would be mislabelling to satisfy a counter.", + "design": [ + 1280, + 720 + ], + "elements": [ + { + "index": 0, + "id": "palogo_eff0", + "declared": "palogo_eff0.prm", + "role": "primitive", + "kind_raw": "0x10", + "pivot": [ + 640, + 360 + ], + "size": [ + 1280, + 720 + ], + "layer_source": "implied", + "layer": "0x00000000", + "rest": { + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xff000000", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xff000000", + "rotation_deg": 0 + } + ] + }, + { + "index": 1, + "id": "palogo_sqex", + "declared": "palogo_sqex.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/publisher_logo_r/palogo_sqex.png", + "pivot": [ + 330, + 30 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x0000a110", + "rest": { + "pos": [ + 309, + 330 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 30 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 309, + 330 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 15, + "pos": [ + 309, + 330 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 30, + "pos": [ + 309, + 330 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 235, + "pos": [ + 309, + 330 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 239, + "pos": [ + 309, + 330 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xe8ffffff", + "rotation_deg": 0 + }, + { + "t": 251, + "pos": [ + 309, + 330 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x20ffffff", + "rotation_deg": 0 + }, + { + "t": 255, + "pos": [ + 309, + 330 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 2, + "id": "palogo_sqex_eff", + "declared": "palogo_sqex_eff.t32", + "role": "unknown", + "kind_raw": "0x1", + "sprite": "sprites/title/publisher_logo_r/palogo_sqex_eff.png", + "pivot": [ + 341, + 41 + ], + "parent": 1, + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x0000a100", + "rest": { + "pos": [ + 299, + 319 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xd4ffffff", + "rotation_deg": 0, + "t": 30 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 299, + 319 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 15, + "pos": [ + 299, + 319 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 30, + "pos": [ + 299, + 319 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xd4ffffff", + "rotation_deg": 0 + }, + { + "t": 45, + "pos": [ + 299, + 319 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + } + ], + "paint_order": [ + 0, + 2, + 1 + ], + "buttons": [], + "settle_window": [ + 45, + 235, + 140 + ], + "unresolved": [ + "keyframe_time_unit", + "paint_order_ties", + "fade_out_duration" + ] +} diff --git a/export-probe/screens/title/title.json b/export-probe/screens/title/title.json new file mode 100644 index 00000000..c32123bc --- /dev/null +++ b/export-probe/screens/title/title.json @@ -0,0 +1,2763 @@ +{ + "format": "sylpheed.screen/3", + "exporter": "sylpheed-export 0.1.0", + "formats_rev": "8b6dbcf", + "source": { + "archive": "dat/GP_TITLE.pak", + "entry": 4, + "build": 4 + }, + "name": "title", + "name_source": "authored", + "name_why": "HANDOFF Q2: build 4 is the English title art. Measured against a live capture. 📌 SOURCE, added 2026-09-01 in the uncited-why backfill: the four bundles are identified in docs/re/ui-title-build-map.md, and the ordinal-versus-entry distinction this entry depends on is docs/re/structures/build-ordinal-vs-entry.md. ⚠️ The sibling references below (\"as entry 10, region twin\") are a citation form too -- they point at another entry in this file rather than at a document, and forcing a path onto them would be mislabelling to satisfy a counter.", + "design": [ + 1280, + 720 + ], + "elements": [ + { + "index": 0, + "id": "ptlogo1", + "declared": "ptlogo1.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/title/ptlogo1.png", + "pivot": [ + 451, + 50 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x000080a0", + "rest": { + "pos": [ + 184, + 193 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 42 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + -116, + -7 + ], + "scale": [ + 150, + 150 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 26, + "pos": [ + -116, + -7 + ], + "scale": [ + 150, + 150 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 34, + "pos": [ + 109, + 123 + ], + "scale": [ + 112, + 112 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 0 + }, + { + "t": 38, + "pos": [ + 165, + 171 + ], + "scale": [ + 103, + 103 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xc0ffffff", + "rotation_deg": 0 + }, + { + "t": 40, + "pos": [ + 179, + 186 + ], + "scale": [ + 101, + 101 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xe0ffffff", + "rotation_deg": 0 + }, + { + "t": 42, + "pos": [ + 184, + 193 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 251, + "pos": [ + 184, + 193 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 264, + "pos": [ + 184, + 193 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 1, + "id": "ptlogo2", + "declared": "ptlogo2.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/title/ptlogo2.png", + "pivot": [ + 449, + 46 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x000080a0", + "rest": { + "pos": [ + 137, + 308 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 42 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 437, + 508 + ], + "scale": [ + 150, + 150 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 26, + "pos": [ + 437, + 508 + ], + "scale": [ + 150, + 150 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 34, + "pos": [ + 212, + 378 + ], + "scale": [ + 112, + 112 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 0 + }, + { + "t": 38, + "pos": [ + 156, + 330 + ], + "scale": [ + 103, + 103 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xc0ffffff", + "rotation_deg": 0 + }, + { + "t": 40, + "pos": [ + 142, + 315 + ], + "scale": [ + 101, + 101 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xe0ffffff", + "rotation_deg": 0 + }, + { + "t": 42, + "pos": [ + 137, + 308 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 251, + "pos": [ + 137, + 308 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 264, + "pos": [ + 137, + 308 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 2, + "id": "ptlogo1", + "declared": "ptlogo1.t32", + "role": "unknown", + "kind_raw": "0x4", + "sprite": "sprites/title/title/ptlogo1.png", + "pivot": [ + 451, + 50 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x000080a0", + "rest": { + "pos": [ + -116, + -7 + ], + "scale": [ + 150, + 150 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + -116, + -7 + ], + "scale": [ + 150, + 150 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 28, + "pos": [ + -116, + -7 + ], + "scale": [ + 150, + 150 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 36, + "pos": [ + 109, + 123 + ], + "scale": [ + 112, + 112 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x40ffffff", + "rotation_deg": 0 + }, + { + "t": 40, + "pos": [ + 165, + 171 + ], + "scale": [ + 103, + 103 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x60ffffff", + "rotation_deg": 0 + }, + { + "t": 42, + "pos": [ + 179, + 186 + ], + "scale": [ + 101, + 101 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x70ffffff", + "rotation_deg": 0 + }, + { + "t": 44, + "pos": [ + 184, + 193 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 0 + }, + { + "t": 48, + "pos": [ + 184, + 193 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 3, + "id": "ptlogo2", + "declared": "ptlogo2.t32", + "role": "unknown", + "kind_raw": "0x4", + "sprite": "sprites/title/title/ptlogo2.png", + "pivot": [ + 449, + 46 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x000080a0", + "rest": { + "pos": [ + 437, + 508 + ], + "scale": [ + 150, + 150 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 437, + 508 + ], + "scale": [ + 150, + 150 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 28, + "pos": [ + 437, + 508 + ], + "scale": [ + 150, + 150 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 36, + "pos": [ + 212, + 378 + ], + "scale": [ + 112, + 112 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x40ffffff", + "rotation_deg": 0 + }, + { + "t": 40, + "pos": [ + 156, + 330 + ], + "scale": [ + 103, + 103 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x60ffffff", + "rotation_deg": 0 + }, + { + "t": 42, + "pos": [ + 142, + 315 + ], + "scale": [ + 101, + 101 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x70ffffff", + "rotation_deg": 0 + }, + { + "t": 44, + "pos": [ + 137, + 308 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 0 + }, + { + "t": 48, + "pos": [ + 137, + 308 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 4, + "id": "ptlogo1", + "declared": "ptlogo1.t32", + "role": "unknown", + "kind_raw": "0x4", + "sprite": "sprites/title/title/ptlogo1.png", + "pivot": [ + 451, + 50 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x000080a0", + "rest": { + "pos": [ + -116, + -7 + ], + "scale": [ + 150, + 150 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + -116, + -7 + ], + "scale": [ + 150, + 150 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 30, + "pos": [ + -116, + -7 + ], + "scale": [ + 150, + 150 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 38, + "pos": [ + 109, + 123 + ], + "scale": [ + 112, + 112 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x20ffffff", + "rotation_deg": 0 + }, + { + "t": 42, + "pos": [ + 165, + 171 + ], + "scale": [ + 103, + 103 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x30ffffff", + "rotation_deg": 0 + }, + { + "t": 44, + "pos": [ + 179, + 186 + ], + "scale": [ + 101, + 101 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x38ffffff", + "rotation_deg": 0 + }, + { + "t": 46, + "pos": [ + 184, + 193 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x40ffffff", + "rotation_deg": 0 + }, + { + "t": 50, + "pos": [ + 184, + 193 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 5, + "id": "ptlogo2", + "declared": "ptlogo2.t32", + "role": "unknown", + "kind_raw": "0x4", + "sprite": "sprites/title/title/ptlogo2.png", + "pivot": [ + 449, + 46 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x000080a0", + "rest": { + "pos": [ + 437, + 508 + ], + "scale": [ + 150, + 150 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 437, + 508 + ], + "scale": [ + 150, + 150 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 30, + "pos": [ + 437, + 508 + ], + "scale": [ + 150, + 150 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 38, + "pos": [ + 212, + 378 + ], + "scale": [ + 112, + 112 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x20ffffff", + "rotation_deg": 0 + }, + { + "t": 42, + "pos": [ + 156, + 330 + ], + "scale": [ + 103, + 103 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x30ffffff", + "rotation_deg": 0 + }, + { + "t": 44, + "pos": [ + 142, + 315 + ], + "scale": [ + 101, + 101 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x38ffffff", + "rotation_deg": 0 + }, + { + "t": 46, + "pos": [ + 137, + 308 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x40ffffff", + "rotation_deg": 0 + }, + { + "t": 50, + "pos": [ + 137, + 308 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 6, + "id": "pteff01", + "declared": "pteff01.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/title/pteff01.png", + "pivot": [ + 320, + 160 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x00008040", + "rest": { + "pos": [ + 320, + 160 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 320, + 160 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 50, + "pos": [ + 320, + 160 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 71, + "pos": [ + 320, + 160 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xe8ffffff", + "rotation_deg": 0 + }, + { + "t": 118, + "pos": [ + 320, + 160 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 7, + "id": "ptlogo_tm", + "declared": "ptlogo_tm.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/title/ptlogo_tm.png", + "pivot": [ + 22, + 14 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x000080a0", + "rest": { + "pos": [ + 1127, + 378 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 116 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 1127, + 378 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 98, + "pos": [ + 1127, + 378 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 116, + "pos": [ + 1127, + 378 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 242, + "pos": [ + 1127, + 378 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 248, + "pos": [ + 1127, + 378 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 8, + "id": "pteff00", + "declared": "pteff00.prm", + "role": "primitive", + "kind_raw": "0x10", + "pivot": [ + 640, + 360 + ], + "size": [ + 1280, + 720 + ], + "layer_source": "implied", + "layer": "0xfffffffe", + "rest": { + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00000000", + "rotation_deg": 0, + "t": 16 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xff000000", + "rotation_deg": 0 + }, + { + "t": 16, + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00000000", + "rotation_deg": 0 + }, + { + "t": 261, + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00000000", + "rotation_deg": 0 + }, + { + "t": 269, + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xff000000", + "rotation_deg": 0 + } + ] + }, + { + "index": 9, + "id": "ptbase2", + "declared": "ptbase2.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/title/ptbase2.png", + "pivot": [ + 320, + 180 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x00008000", + "rest": { + "pos": [ + 320, + 180 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 320, + 180 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 10, + "id": "pteff04", + "declared": "pteff04.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/title/pteff04.png", + "pivot": [ + 640, + 360 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x00008020", + "rest": { + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 11, + "id": "ptloop01", + "declared": "ptloop01.rat", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/title/pteff03.png", + "leaf": { + "record": "ptloop01.rat", + "loop_length_units": 600, + "elements": [ + { + "id": "pteff03", + "declared": "pteff03.t32", + "sprite": "sprites/title/title/pteff03.png", + "blend_additive": true, + "pivot": [ + 200, + 90 + ], + "rest": { + "pos": [ + 1521, + 270 + ], + "scale": [ + 100, + 600 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 30, + "t": 540 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + -639, + 270 + ], + "scale": [ + 100, + 600 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 30 + }, + { + "t": 150, + "pos": [ + -39, + 270 + ], + "scale": [ + 100, + 600 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 30 + }, + { + "t": 540, + "pos": [ + 1521, + 270 + ], + "scale": [ + 100, + 600 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 30 + }, + { + "t": 600, + "pos": [ + 1521, + 270 + ], + "scale": [ + 100, + 600 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 30 + } + ] + } + ] + }, + "leaf_carries_geometry": true, + "opt_link": "ptloop02.rat", + "pivot": [ + 200, + 90 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x00008010", + "animated": true, + "rest": { + "pos": [ + 441, + 270 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 100 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 441, + 270 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 70, + "pos": [ + 441, + 270 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 100, + "pos": [ + 441, + 270 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 238, + "pos": [ + 441, + 270 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 250, + "pos": [ + 441, + 270 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 12, + "id": "ptloop02", + "declared": "ptloop02.rat", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/title/pteff03a.png", + "leaf": { + "record": "ptloop02.rat", + "loop_length_units": 720, + "elements": [ + { + "id": "pteff03a", + "declared": "pteff03a.t32", + "sprite": "sprites/title/title/pteff03a.png", + "blend_additive": true, + "pivot": [ + 200, + 90 + ], + "rest": { + "pos": [ + -839, + 270 + ], + "scale": [ + 100, + 800 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": -45, + "t": 630 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 1721, + 270 + ], + "scale": [ + 100, + 800 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": -45 + }, + { + "t": 150, + "pos": [ + 1111, + 270 + ], + "scale": [ + 100, + 800 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": -45 + }, + { + "t": 630, + "pos": [ + -839, + 270 + ], + "scale": [ + 100, + 800 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": -45 + }, + { + "t": 720, + "pos": [ + -839, + 270 + ], + "scale": [ + 100, + 800 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": -45 + } + ] + } + ] + }, + "leaf_carries_geometry": true, + "pivot": [ + 200, + 90 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x00008010", + "animated": true, + "rest": { + "pos": [ + 441, + 270 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 100 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 441, + 270 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 70, + "pos": [ + 441, + 270 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 100, + "pos": [ + 441, + 270 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 238, + "pos": [ + 441, + 270 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 250, + "pos": [ + 441, + 270 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 13, + "id": "pteff02", + "declared": "pteff02.prm", + "role": "primitive", + "kind_raw": "0x10", + "pivot": [ + 640, + 360 + ], + "size": [ + 1280, + 720 + ], + "layer_source": "implied", + "layer": "0x00008030", + "rest": { + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x40000000", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x40000000", + "rotation_deg": 0 + }, + { + "t": 46, + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x40000000", + "rotation_deg": 0 + }, + { + "t": 61, + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xd4000000", + "rotation_deg": 0 + }, + { + "t": 76, + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xcc000000", + "rotation_deg": 0 + }, + { + "t": 118, + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00000000", + "rotation_deg": 0 + }, + { + "t": 236, + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00000000", + "rotation_deg": 0 + } + ] + }, + { + "index": 14, + "id": "ptlogo_back2eff1", + "declared": "ptlogo_back2eff1.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/title/ptlogo_back2eff1.png", + "pivot": [ + 78, + 60 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x00008083", + "rest": { + "pos": [ + 938, + 194 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 54 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 938, + 194 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 52, + "pos": [ + 938, + 194 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 54, + "pos": [ + 938, + 194 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 56, + "pos": [ + 938, + 194 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 58, + "pos": [ + 938, + 194 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 15, + "id": "ptlogo_back2eff2", + "declared": "ptlogo_back2eff2.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/title/ptlogo_back2eff2.png", + "pivot": [ + 116, + 91 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x00008083", + "rest": { + "pos": [ + 938, + 117 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 58 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 938, + 117 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 56, + "pos": [ + 938, + 117 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 58, + "pos": [ + 938, + 117 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 60, + "pos": [ + 938, + 117 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 62, + "pos": [ + 938, + 117 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 16, + "id": "ptlogo_back2eff3", + "declared": "ptlogo_back2eff3.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/title/ptlogo_back2eff3.png", + "pivot": [ + 170, + 91 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x00008083", + "rest": { + "pos": [ + 788, + 117 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 60 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 788, + 117 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 58, + "pos": [ + 788, + 117 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 60, + "pos": [ + 788, + 117 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 62, + "pos": [ + 788, + 117 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 64, + "pos": [ + 788, + 117 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 17, + "id": "ptlogo_back2eff4", + "declared": "ptlogo_back2eff4.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/title/ptlogo_back2eff4.png", + "pivot": [ + 329, + 91 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x00008083", + "rest": { + "pos": [ + 447, + 117 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 62 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 447, + 117 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 60, + "pos": [ + 447, + 117 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 62, + "pos": [ + 447, + 117 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 64, + "pos": [ + 447, + 117 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 66, + "pos": [ + 447, + 117 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 18, + "id": "ptlogo_back2eff5", + "declared": "ptlogo_back2eff5.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/title/ptlogo_back2eff5.png", + "pivot": [ + 507, + 126 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x00008083", + "rest": { + "pos": [ + 64, + 117 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 64 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 64, + 117 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 62, + "pos": [ + 64, + 117 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 64, + "pos": [ + 64, + 117 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 66, + "pos": [ + 64, + 117 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 74, + "pos": [ + 64, + 117 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xc0ffffff", + "rotation_deg": 0 + }, + { + "t": 110, + "pos": [ + 64, + 117 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 19, + "id": "ptlogo_back2", + "declared": "ptlogo_back2.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/title/ptlogo_back2.png", + "pivot": [ + 500, + 117 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x00008082", + "rest": { + "pos": [ + 71, + 126 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 80 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 71, + 126 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 66, + "pos": [ + 71, + 126 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 80, + "pos": [ + 71, + 126 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 243, + "pos": [ + 71, + 126 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 249, + "pos": [ + 71, + 126 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 20, + "id": "ptlogo_back2eff", + "declared": "ptlogo_back2eff.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/title/ptlogo_back2eff.png", + "pivot": [ + 507, + 126 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x00008081", + "rest": { + "pos": [ + 64, + 117 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 66 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 64, + 117 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 62, + "pos": [ + 64, + 117 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 66, + "pos": [ + 64, + 117 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 238, + "pos": [ + 64, + 117 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 244, + "pos": [ + 64, + 117 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 21, + "id": "ptcopyright", + "declared": "ptcopyright.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/title/ptcopyright.png", + "pivot": [ + 309, + 10 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x00008100", + "rest": { + "pos": [ + 293, + 655 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 160 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 293, + 655 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 138, + "pos": [ + 293, + 655 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 160, + "pos": [ + 293, + 655 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 238, + "pos": [ + 293, + 655 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 244, + "pos": [ + 293, + 655 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 22, + "id": "ptlogoall_eff", + "declared": "ptlogoall_eff.t32", + "role": "unknown", + "kind_raw": "0x3000", + "sprite": "sprites/title/title/ptlogoall_eff.png", + "pivot": [ + 258, + 66 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x000080a8", + "rest": { + "pos": [ + 376, + 238 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 376, + 238 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 52, + "pos": [ + 376, + 238 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 66, + "pos": [ + 376, + 238 + ], + "scale": [ + 210, + 220 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 0 + }, + { + "t": 76, + "pos": [ + 376, + 238 + ], + "scale": [ + 204, + 208 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x70ffffff", + "rotation_deg": 0 + }, + { + "t": 90, + "pos": [ + 376, + 238 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x4bffffff", + "rotation_deg": 0 + }, + { + "t": 118, + "pos": [ + 376, + 238 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 23, + "id": "ptlogoall_eff2", + "declared": "ptlogoall_eff2.t32", + "role": "unknown", + "kind_raw": "0x3000", + "sprite": "sprites/title/title/ptlogoall_eff2.png", + "pivot": [ + 118, + 90 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x000080a9", + "rest": { + "pos": [ + 523, + 270 + ], + "scale": [ + 400, + 400 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 523, + 270 + ], + "scale": [ + 400, + 400 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 52, + "pos": [ + 523, + 270 + ], + "scale": [ + 400, + 400 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 66, + "pos": [ + 523, + 270 + ], + "scale": [ + 400, + 400 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 0 + }, + { + "t": 74, + "pos": [ + 523, + 270 + ], + "scale": [ + 400, + 400 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x70ffffff", + "rotation_deg": 0 + }, + { + "t": 109, + "pos": [ + 523, + 270 + ], + "scale": [ + 400, + 400 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + } + ], + "paint_order": [ + 9, + 11, + 12, + 10, + 13, + 6, + 20, + 19, + 14, + 15, + 16, + 17, + 18, + 0, + 1, + 2, + 3, + 4, + 5, + 7, + 22, + 23, + 21, + 8 + ], + "buttons": [], + "settle_window": [ + 160, + 236, + 198 + ], + "unresolved": [ + "keyframe_time_unit", + "paint_order_ties", + "fade_out_duration" + ] +} diff --git a/export-probe/screens/title/title_jp.json b/export-probe/screens/title/title_jp.json new file mode 100644 index 00000000..64428063 --- /dev/null +++ b/export-probe/screens/title/title_jp.json @@ -0,0 +1,3603 @@ +{ + "format": "sylpheed.screen/3", + "exporter": "sylpheed-export 0.1.0", + "formats_rev": "8b6dbcf", + "source": { + "archive": "dat/GP_TITLE.pak", + "entry": 7, + "build": 7 + }, + "name": "title_jp", + "name_source": "authored", + "name_why": "HANDOFF Q2: the Japanese twin of build 4. 📌 SOURCE, added 2026-09-01 in the uncited-why backfill: the four bundles are identified in docs/re/ui-title-build-map.md, and the ordinal-versus-entry distinction this entry depends on is docs/re/structures/build-ordinal-vs-entry.md. ⚠️ The sibling references below (\"as entry 10, region twin\") are a citation form too -- they point at another entry in this file rather than at a document, and forcing a path onto them would be mislabelling to satisfy a counter.", + "design": [ + 1280, + 720 + ], + "elements": [ + { + "index": 0, + "id": "ptlogo1", + "declared": "ptlogo1.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/title_jp/ptlogo1.png", + "pivot": [ + 451, + 50 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x000080a0", + "rest": { + "pos": [ + 235, + 233 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 42 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + -65, + 33 + ], + "scale": [ + 150, + 150 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 26, + "pos": [ + -65, + 33 + ], + "scale": [ + 150, + 150 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 34, + "pos": [ + 160, + 163 + ], + "scale": [ + 112, + 112 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 0 + }, + { + "t": 38, + "pos": [ + 216, + 211 + ], + "scale": [ + 103, + 103 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xc0ffffff", + "rotation_deg": 0 + }, + { + "t": 40, + "pos": [ + 230, + 226 + ], + "scale": [ + 101, + 101 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xe0ffffff", + "rotation_deg": 0 + }, + { + "t": 42, + "pos": [ + 235, + 233 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 256, + "pos": [ + 235, + 233 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 269, + "pos": [ + 235, + 233 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 1, + "id": "ptlogo2", + "declared": "ptlogo2.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/title_jp/ptlogo2.png", + "pivot": [ + 449, + 46 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x000080a0", + "rest": { + "pos": [ + 193, + 335 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 42 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 493, + 535 + ], + "scale": [ + 150, + 150 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 26, + "pos": [ + 493, + 535 + ], + "scale": [ + 150, + 150 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 34, + "pos": [ + 268, + 405 + ], + "scale": [ + 112, + 112 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 0 + }, + { + "t": 38, + "pos": [ + 212, + 357 + ], + "scale": [ + 103, + 103 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xc0ffffff", + "rotation_deg": 0 + }, + { + "t": 40, + "pos": [ + 198, + 342 + ], + "scale": [ + 101, + 101 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xe0ffffff", + "rotation_deg": 0 + }, + { + "t": 42, + "pos": [ + 193, + 335 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 256, + "pos": [ + 193, + 335 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 269, + "pos": [ + 193, + 335 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 2, + "id": "ptlogo1", + "declared": "ptlogo1.t32", + "role": "unknown", + "kind_raw": "0x4", + "sprite": "sprites/title/title_jp/ptlogo1.png", + "pivot": [ + 451, + 50 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x000080a0", + "rest": { + "pos": [ + -65, + 33 + ], + "scale": [ + 150, + 150 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + -65, + 33 + ], + "scale": [ + 150, + 150 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 28, + "pos": [ + -65, + 33 + ], + "scale": [ + 150, + 150 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 36, + "pos": [ + 160, + 163 + ], + "scale": [ + 112, + 112 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x40ffffff", + "rotation_deg": 0 + }, + { + "t": 40, + "pos": [ + 216, + 211 + ], + "scale": [ + 103, + 103 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x60ffffff", + "rotation_deg": 0 + }, + { + "t": 42, + "pos": [ + 230, + 226 + ], + "scale": [ + 101, + 101 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x70ffffff", + "rotation_deg": 0 + }, + { + "t": 44, + "pos": [ + 235, + 233 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 0 + }, + { + "t": 48, + "pos": [ + 235, + 233 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 3, + "id": "ptlogo2", + "declared": "ptlogo2.t32", + "role": "unknown", + "kind_raw": "0x4", + "sprite": "sprites/title/title_jp/ptlogo2.png", + "pivot": [ + 449, + 46 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x000080a0", + "rest": { + "pos": [ + 493, + 535 + ], + "scale": [ + 150, + 150 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 493, + 535 + ], + "scale": [ + 150, + 150 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 28, + "pos": [ + 493, + 535 + ], + "scale": [ + 150, + 150 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 36, + "pos": [ + 268, + 405 + ], + "scale": [ + 112, + 112 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x40ffffff", + "rotation_deg": 0 + }, + { + "t": 40, + "pos": [ + 212, + 357 + ], + "scale": [ + 103, + 103 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x60ffffff", + "rotation_deg": 0 + }, + { + "t": 42, + "pos": [ + 198, + 342 + ], + "scale": [ + 101, + 101 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x70ffffff", + "rotation_deg": 0 + }, + { + "t": 44, + "pos": [ + 193, + 335 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 0 + }, + { + "t": 48, + "pos": [ + 193, + 335 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 4, + "id": "ptlogo1", + "declared": "ptlogo1.t32", + "role": "unknown", + "kind_raw": "0x4", + "sprite": "sprites/title/title_jp/ptlogo1.png", + "pivot": [ + 451, + 50 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x000080a0", + "rest": { + "pos": [ + -65, + 33 + ], + "scale": [ + 150, + 150 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + -65, + 33 + ], + "scale": [ + 150, + 150 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 30, + "pos": [ + -65, + 33 + ], + "scale": [ + 150, + 150 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 38, + "pos": [ + 160, + 163 + ], + "scale": [ + 112, + 112 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x20ffffff", + "rotation_deg": 0 + }, + { + "t": 42, + "pos": [ + 216, + 211 + ], + "scale": [ + 103, + 103 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x30ffffff", + "rotation_deg": 0 + }, + { + "t": 44, + "pos": [ + 230, + 226 + ], + "scale": [ + 101, + 101 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x38ffffff", + "rotation_deg": 0 + }, + { + "t": 46, + "pos": [ + 235, + 233 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x40ffffff", + "rotation_deg": 0 + }, + { + "t": 50, + "pos": [ + 235, + 233 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 5, + "id": "ptlogo2", + "declared": "ptlogo2.t32", + "role": "unknown", + "kind_raw": "0x4", + "sprite": "sprites/title/title_jp/ptlogo2.png", + "pivot": [ + 449, + 46 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x000080a0", + "rest": { + "pos": [ + 493, + 535 + ], + "scale": [ + 150, + 150 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 493, + 535 + ], + "scale": [ + 150, + 150 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 30, + "pos": [ + 493, + 535 + ], + "scale": [ + 150, + 150 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 38, + "pos": [ + 268, + 405 + ], + "scale": [ + 112, + 112 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x20ffffff", + "rotation_deg": 0 + }, + { + "t": 42, + "pos": [ + 212, + 357 + ], + "scale": [ + 103, + 103 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x30ffffff", + "rotation_deg": 0 + }, + { + "t": 44, + "pos": [ + 198, + 342 + ], + "scale": [ + 101, + 101 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x38ffffff", + "rotation_deg": 0 + }, + { + "t": 46, + "pos": [ + 193, + 335 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x40ffffff", + "rotation_deg": 0 + }, + { + "t": 50, + "pos": [ + 193, + 335 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 6, + "id": "ptlogo_back1", + "declared": "ptlogo_back1.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/title_jp/ptlogo_back1.png", + "pivot": [ + 250, + 218 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x00008080", + "rest": { + "pos": [ + 310, + 48 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 76 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 310, + 48 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 64, + "pos": [ + 310, + 48 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 70, + "pos": [ + 310, + 48 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x50ffffff", + "rotation_deg": 0 + }, + { + "t": 76, + "pos": [ + 310, + 48 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 246, + "pos": [ + 310, + 48 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 258, + "pos": [ + 310, + 48 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 7, + "id": "ptlogo_eff2", + "declared": "ptlogo_eff2.rat", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/title_jp/ptlogo_eff2.png", + "leaf": { + "record": "ptlogo_eff2.rat", + "loop_length_units": 960, + "elements": [ + { + "id": "ptlogo_eff2", + "declared": "ptlogo_eff2.t32", + "sprite": "sprites/title/title_jp/ptlogo_eff2.png", + "blend_additive": true, + "pivot": [ + 169, + 169 + ], + "rest": { + "pos": [ + 402, + 66 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xa0ffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 402, + 66 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xa0ffffff", + "rotation_deg": 0 + }, + { + "t": 960, + "pos": [ + 402, + 66 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xa0ffffff", + "rotation_deg": 360 + } + ] + }, + { + "id": "ptlogo_eff2", + "declared": "ptlogo_eff2.t32", + "sprite": "sprites/title/title_jp/ptlogo_eff2.png", + "blend_additive": true, + "pivot": [ + 169, + 169 + ], + "rest": { + "pos": [ + 402, + 66 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x50ffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 402, + 66 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x50ffffff", + "rotation_deg": 0 + }, + { + "t": 960, + "pos": [ + 402, + 66 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x50ffffff", + "rotation_deg": 360 + } + ] + } + ] + }, + "leaf_carries_geometry": true, + "opt_link": "ptloop01.rat", + "pivot": [ + 169, + 169 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x00008082", + "rest": { + "pos": [ + 412, + 96 + ], + "scale": [ + 125, + 125 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 59 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 412, + 96 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 50, + "pos": [ + 412, + 96 + ], + "scale": [ + 0, + 0 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 59, + "pos": [ + 412, + 96 + ], + "scale": [ + 125, + 125 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 71, + "pos": [ + 412, + 96 + ], + "scale": [ + 125, + 125 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 107, + "pos": [ + 412, + 96 + ], + "scale": [ + 0, + 0 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 8, + "id": "ptlogo_eff3", + "declared": "ptlogo_eff3.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/title_jp/ptlogo_eff3.png", + "pivot": [ + 473, + 193 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x00008081", + "rest": { + "pos": [ + 98, + 42 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 98, + 42 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 46, + "pos": [ + 108, + 72 + ], + "scale": [ + 0, + 0 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 61, + "pos": [ + 108, + 72 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 80 + }, + { + "t": 103, + "pos": [ + 108, + 72 + ], + "scale": [ + 0, + 0 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 150 + } + ] + }, + { + "index": 9, + "id": "ptlogo_jp", + "declared": "ptlogo_jp.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/title_jp/ptlogo_jp.png", + "pivot": [ + 234, + 24 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x00008091", + "rest": { + "pos": [ + 569, + 424 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 140 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 569, + 424 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 124, + "pos": [ + 569, + 424 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 140, + "pos": [ + 569, + 424 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 244, + "pos": [ + 569, + 424 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 250, + "pos": [ + 569, + 424 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 10, + "id": "ptlogo_jpeff", + "declared": "ptlogo_jpeff.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/title_jp/ptlogo_jpeff.png", + "pivot": [ + 237, + 28 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x00008090", + "rest": { + "pos": [ + 566, + 420 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 566, + 420 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 112, + "pos": [ + 566, + 420 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 127, + "pos": [ + 566, + 420 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 140, + "pos": [ + 566, + 420 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 11, + "id": "ptlogo_tm", + "declared": "ptlogo_tm.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/title_jp/ptlogo_tm.png", + "pivot": [ + 22, + 14 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x000080a0", + "rest": { + "pos": [ + 1073, + 392 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 162 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 1073, + 392 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 144, + "pos": [ + 1073, + 392 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 162, + "pos": [ + 1073, + 392 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 242, + "pos": [ + 1073, + 392 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 248, + "pos": [ + 1073, + 392 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 12, + "id": "pteff00", + "declared": "pteff00.prm", + "role": "primitive", + "kind_raw": "0x10", + "pivot": [ + 640, + 360 + ], + "size": [ + 1280, + 720 + ], + "layer_source": "implied", + "layer": "0xfffffffe", + "rest": { + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00000000", + "rotation_deg": 0, + "t": 16 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xff000000", + "rotation_deg": 0 + }, + { + "t": 16, + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00000000", + "rotation_deg": 0 + }, + { + "t": 261, + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00000000", + "rotation_deg": 0 + }, + { + "t": 269, + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xff000000", + "rotation_deg": 0 + } + ] + }, + { + "index": 13, + "id": "ptbase2", + "declared": "ptbase2.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/title_jp/ptbase2.png", + "pivot": [ + 320, + 180 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x00008000", + "rest": { + "pos": [ + 320, + 180 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 320, + 180 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 14, + "id": "pteff04", + "declared": "pteff04.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/title_jp/pteff04.png", + "pivot": [ + 640, + 360 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x00008020", + "rest": { + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 15, + "id": "ptloop01", + "declared": "ptloop01.rat", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/title_jp/pteff03.png", + "leaf": { + "record": "ptloop01.rat", + "loop_length_units": 600, + "elements": [ + { + "id": "pteff03", + "declared": "pteff03.t32", + "sprite": "sprites/title/title_jp/pteff03.png", + "blend_additive": true, + "pivot": [ + 200, + 90 + ], + "rest": { + "pos": [ + 1521, + 270 + ], + "scale": [ + 100, + 600 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 30, + "t": 540 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + -639, + 270 + ], + "scale": [ + 100, + 600 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 30 + }, + { + "t": 150, + "pos": [ + -39, + 270 + ], + "scale": [ + 100, + 600 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 30 + }, + { + "t": 540, + "pos": [ + 1521, + 270 + ], + "scale": [ + 100, + 600 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 30 + }, + { + "t": 600, + "pos": [ + 1521, + 270 + ], + "scale": [ + 100, + 600 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 30 + } + ] + } + ] + }, + "leaf_carries_geometry": true, + "opt_link": "ptloop02.rat", + "pivot": [ + 200, + 90 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x00008010", + "animated": true, + "rest": { + "pos": [ + 441, + 270 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 100 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 441, + 270 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 70, + "pos": [ + 441, + 270 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 100, + "pos": [ + 441, + 270 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 238, + "pos": [ + 441, + 270 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 250, + "pos": [ + 441, + 270 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 16, + "id": "ptloop02", + "declared": "ptloop02.rat", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/title_jp/pteff03a.png", + "leaf": { + "record": "ptloop02.rat", + "loop_length_units": 720, + "elements": [ + { + "id": "pteff03a", + "declared": "pteff03a.t32", + "sprite": "sprites/title/title_jp/pteff03a.png", + "blend_additive": true, + "pivot": [ + 200, + 90 + ], + "rest": { + "pos": [ + -839, + 270 + ], + "scale": [ + 100, + 800 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": -45, + "t": 630 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 1721, + 270 + ], + "scale": [ + 100, + 800 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": -45 + }, + { + "t": 150, + "pos": [ + 1111, + 270 + ], + "scale": [ + 100, + 800 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": -45 + }, + { + "t": 630, + "pos": [ + -839, + 270 + ], + "scale": [ + 100, + 800 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": -45 + }, + { + "t": 720, + "pos": [ + -839, + 270 + ], + "scale": [ + 100, + 800 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": -45 + } + ] + } + ] + }, + "leaf_carries_geometry": true, + "pivot": [ + 200, + 90 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x00008010", + "animated": true, + "rest": { + "pos": [ + 441, + 270 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 100 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 441, + 270 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 70, + "pos": [ + 441, + 270 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 100, + "pos": [ + 441, + 270 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 238, + "pos": [ + 441, + 270 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 250, + "pos": [ + 441, + 270 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 17, + "id": "pteff02", + "declared": "pteff02.prm", + "role": "primitive", + "kind_raw": "0x10", + "pivot": [ + 640, + 360 + ], + "size": [ + 1280, + 720 + ], + "layer_source": "implied", + "layer": "0x00008030", + "rest": { + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x40000000", + "rotation_deg": 0, + "t": 0 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x40000000", + "rotation_deg": 0 + }, + { + "t": 46, + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x40000000", + "rotation_deg": 0 + }, + { + "t": 61, + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xd4000000", + "rotation_deg": 0 + }, + { + "t": 76, + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xcc000000", + "rotation_deg": 0 + }, + { + "t": 118, + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00000000", + "rotation_deg": 0 + }, + { + "t": 236, + "pos": [ + 0, + 0 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00000000", + "rotation_deg": 0 + } + ] + }, + { + "index": 18, + "id": "ptlogo_back2eff1", + "declared": "ptlogo_back2eff1.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/title_jp/ptlogo_back2eff1.png", + "pivot": [ + 78, + 60 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x00008083", + "rest": { + "pos": [ + 910, + 227 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 100 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 910, + 227 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 98, + "pos": [ + 910, + 227 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 100, + "pos": [ + 910, + 227 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 102, + "pos": [ + 910, + 227 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 104, + "pos": [ + 910, + 227 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 19, + "id": "ptlogo_back2eff2", + "declared": "ptlogo_back2eff2.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/title_jp/ptlogo_back2eff2.png", + "pivot": [ + 116, + 91 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x00008083", + "rest": { + "pos": [ + 910, + 164 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 104 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 910, + 164 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 102, + "pos": [ + 910, + 164 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 104, + "pos": [ + 910, + 164 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 106, + "pos": [ + 910, + 164 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 108, + "pos": [ + 910, + 164 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 20, + "id": "ptlogo_back2eff3", + "declared": "ptlogo_back2eff3.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/title_jp/ptlogo_back2eff3.png", + "pivot": [ + 170, + 91 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x00008083", + "rest": { + "pos": [ + 802, + 164 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 106 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 802, + 164 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 104, + "pos": [ + 802, + 164 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 106, + "pos": [ + 802, + 164 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 108, + "pos": [ + 802, + 164 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 110, + "pos": [ + 802, + 164 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 21, + "id": "ptlogo_back2eff4", + "declared": "ptlogo_back2eff4.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/title_jp/ptlogo_back2eff4.png", + "pivot": [ + 329, + 91 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x00008083", + "rest": { + "pos": [ + 483, + 164 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 108 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 483, + 164 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 106, + "pos": [ + 483, + 164 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 108, + "pos": [ + 483, + 164 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 110, + "pos": [ + 483, + 164 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 112, + "pos": [ + 483, + 164 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 22, + "id": "ptlogo_back2eff5", + "declared": "ptlogo_back2eff5.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/title_jp/ptlogo_back2eff5.png", + "pivot": [ + 507, + 126 + ], + "blend_additive": true, + "layer_source": "sprite", + "layer": "0x00008083", + "rest": { + "pos": [ + 127, + 164 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 110 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 127, + 164 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 108, + "pos": [ + 127, + 164 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 110, + "pos": [ + 127, + 164 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 112, + "pos": [ + 127, + 164 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 120, + "pos": [ + 127, + 164 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xc0ffffff", + "rotation_deg": 0 + }, + { + "t": 146, + "pos": [ + 127, + 164 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 23, + "id": "ptlogo_back2", + "declared": "ptlogo_back2.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/title_jp/ptlogo_back2.png", + "pivot": [ + 500, + 117 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x00008082", + "rest": { + "pos": [ + 134, + 173 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 126 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 134, + 173 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 112, + "pos": [ + 134, + 173 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 126, + "pos": [ + 134, + 173 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 243, + "pos": [ + 134, + 173 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 249, + "pos": [ + 134, + 173 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 24, + "id": "ptlogo_back2eff", + "declared": "ptlogo_back2eff.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/title_jp/ptlogo_back2eff.png", + "pivot": [ + 507, + 126 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x00008081", + "rest": { + "pos": [ + 127, + 164 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 112 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 127, + 164 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 108, + "pos": [ + 127, + 164 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 112, + "pos": [ + 127, + 164 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 238, + "pos": [ + 127, + 164 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 244, + "pos": [ + 127, + 164 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 25, + "id": "ptlogo3a", + "declared": "ptlogo3a.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/title_jp/ptlogo3a.png", + "pivot": [ + 32, + 36 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x000080a8", + "rest": { + "pos": [ + 557, + 215 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 136 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 557, + 215 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 112, + "pos": [ + 587, + 185 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": -14 + }, + { + "t": 125, + "pos": [ + 565, + 207 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x7fffffff", + "rotation_deg": -4 + }, + { + "t": 130, + "pos": [ + 559, + 213 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xc0ffffff", + "rotation_deg": -1 + }, + { + "t": 133, + "pos": [ + 557, + 215 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xe0ffffff", + "rotation_deg": 0 + }, + { + "t": 136, + "pos": [ + 557, + 215 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 242, + "pos": [ + 557, + 215 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 248, + "pos": [ + 557, + 215 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 26, + "id": "ptlogo3b", + "declared": "ptlogo3b.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/title_jp/ptlogo3b.png", + "pivot": [ + 20, + 34 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x000080a8", + "rest": { + "pos": [ + 632, + 175 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 150 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 632, + 175 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 122, + "pos": [ + 652, + 155 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 14 + }, + { + "t": 136, + "pos": [ + 637, + 170 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x80ffffff", + "rotation_deg": 4 + }, + { + "t": 142, + "pos": [ + 633, + 174 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xc0ffffff", + "rotation_deg": 1 + }, + { + "t": 146, + "pos": [ + 632, + 175 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xe0ffffff", + "rotation_deg": 0 + }, + { + "t": 150, + "pos": [ + 632, + 175 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 240, + "pos": [ + 632, + 175 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 246, + "pos": [ + 632, + 175 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 27, + "id": "ptlogo3c", + "declared": "ptlogo3c.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/title_jp/ptlogo3c.png", + "pivot": [ + 30, + 42 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x000080a8", + "rest": { + "pos": [ + 676, + 131 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 168 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 676, + 131 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 136, + "pos": [ + 696, + 101 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": -14 + }, + { + "t": 153, + "pos": [ + 681, + 123 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x7fffffff", + "rotation_deg": -4 + }, + { + "t": 159, + "pos": [ + 677, + 129 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xc0ffffff", + "rotation_deg": -1 + }, + { + "t": 164, + "pos": [ + 676, + 131 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xe0ffffff", + "rotation_deg": 0 + }, + { + "t": 168, + "pos": [ + 676, + 131 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 238, + "pos": [ + 676, + 131 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 244, + "pos": [ + 676, + 131 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 28, + "id": "ptcopyright", + "declared": "ptcopyright.t32", + "role": "decoration", + "kind_raw": "0x0", + "sprite": "sprites/title/title_jp/ptcopyright.png", + "pivot": [ + 309, + 10 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x00008100", + "rest": { + "pos": [ + 293, + 655 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0, + "t": 190 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 293, + 655 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 168, + "pos": [ + 293, + 655 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 190, + "pos": [ + 293, + 655 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 238, + "pos": [ + 293, + 655 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0xffffffff", + "rotation_deg": 0 + }, + { + "t": 244, + "pos": [ + 293, + 655 + ], + "scale": [ + 100, + 100 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + }, + { + "index": 29, + "id": "ptlogo_all_eff", + "declared": "ptlogo_all_eff.t32", + "role": "unknown", + "kind_raw": "0x3000", + "sprite": "sprites/title/title_jp/ptlogo_all_eff.png", + "pivot": [ + 269, + 128 + ], + "blend_additive": false, + "layer_source": "sprite", + "layer": "0x00008078", + "rest": { + "pos": [ + 367, + 139 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x7fffffff", + "rotation_deg": 0, + "t": 112 + }, + "keyframes": [ + { + "t": 0, + "pos": [ + 367, + 139 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 76, + "pos": [ + 367, + 139 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + }, + { + "t": 112, + "pos": [ + 367, + 139 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x7fffffff", + "rotation_deg": 0 + }, + { + "t": 246, + "pos": [ + 367, + 139 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x7fffffff", + "rotation_deg": 0 + }, + { + "t": 258, + "pos": [ + 367, + 139 + ], + "scale": [ + 200, + 200 + ], + "tint_rgba": "0xffffffff", + "fade_argb": "0x00ffffff", + "rotation_deg": 0 + } + ] + } + ], + "paint_order": [ + 13, + 15, + 16, + 14, + 17, + 29, + 6, + 8, + 24, + 7, + 23, + 18, + 19, + 20, + 21, + 22, + 10, + 9, + 0, + 1, + 2, + 3, + 4, + 5, + 11, + 25, + 26, + 27, + 28, + 12 + ], + "buttons": [], + "settle_window": [ + 190, + 236, + 213 + ], + "unresolved": [ + "keyframe_time_unit", + "paint_order_ties", + "fade_out_duration" + ] +} diff --git a/export-probe/sprites/title/build_00/pgloading_circle1.png b/export-probe/sprites/title/build_00/pgloading_circle1.png new file mode 100644 index 00000000..113d04fe Binary files /dev/null and b/export-probe/sprites/title/build_00/pgloading_circle1.png differ diff --git a/export-probe/sprites/title/build_00/pgloading_delta.png b/export-probe/sprites/title/build_00/pgloading_delta.png new file mode 100644 index 00000000..7d32021c Binary files /dev/null and b/export-probe/sprites/title/build_00/pgloading_delta.png differ diff --git a/export-probe/sprites/title/build_00/pgloading_eff01.png b/export-probe/sprites/title/build_00/pgloading_eff01.png new file mode 100644 index 00000000..67f1b5c0 Binary files /dev/null and b/export-probe/sprites/title/build_00/pgloading_eff01.png differ diff --git a/export-probe/sprites/title/build_00/pgloading_eff02.png b/export-probe/sprites/title/build_00/pgloading_eff02.png new file mode 100644 index 00000000..db059edb Binary files /dev/null and b/export-probe/sprites/title/build_00/pgloading_eff02.png differ diff --git a/export-probe/sprites/title/build_00/pgloading_line.png b/export-probe/sprites/title/build_00/pgloading_line.png new file mode 100644 index 00000000..a71d9d59 Binary files /dev/null and b/export-probe/sprites/title/build_00/pgloading_line.png differ diff --git a/export-probe/sprites/title/build_00/pgloading_processing.png b/export-probe/sprites/title/build_00/pgloading_processing.png new file mode 100644 index 00000000..5c3499f8 Binary files /dev/null and b/export-probe/sprites/title/build_00/pgloading_processing.png differ diff --git a/export-probe/sprites/title/build_00/pgloading_str.png b/export-probe/sprites/title/build_00/pgloading_str.png new file mode 100644 index 00000000..8169116e Binary files /dev/null and b/export-probe/sprites/title/build_00/pgloading_str.png differ diff --git a/export-probe/sprites/title/build_01/pgloading_circle1.png b/export-probe/sprites/title/build_01/pgloading_circle1.png new file mode 100644 index 00000000..113d04fe Binary files /dev/null and b/export-probe/sprites/title/build_01/pgloading_circle1.png differ diff --git a/export-probe/sprites/title/build_01/pgloading_delta.png b/export-probe/sprites/title/build_01/pgloading_delta.png new file mode 100644 index 00000000..7d32021c Binary files /dev/null and b/export-probe/sprites/title/build_01/pgloading_delta.png differ diff --git a/export-probe/sprites/title/build_01/pgloading_eff01.png b/export-probe/sprites/title/build_01/pgloading_eff01.png new file mode 100644 index 00000000..67f1b5c0 Binary files /dev/null and b/export-probe/sprites/title/build_01/pgloading_eff01.png differ diff --git a/export-probe/sprites/title/build_01/pgloading_eff02.png b/export-probe/sprites/title/build_01/pgloading_eff02.png new file mode 100644 index 00000000..db059edb Binary files /dev/null and b/export-probe/sprites/title/build_01/pgloading_eff02.png differ diff --git a/export-probe/sprites/title/build_01/pgloading_line.png b/export-probe/sprites/title/build_01/pgloading_line.png new file mode 100644 index 00000000..a71d9d59 Binary files /dev/null and b/export-probe/sprites/title/build_01/pgloading_line.png differ diff --git a/export-probe/sprites/title/build_01/pgloading_processing.png b/export-probe/sprites/title/build_01/pgloading_processing.png new file mode 100644 index 00000000..5c3499f8 Binary files /dev/null and b/export-probe/sprites/title/build_01/pgloading_processing.png differ diff --git a/export-probe/sprites/title/build_01/pgloading_str.png b/export-probe/sprites/title/build_01/pgloading_str.png new file mode 100644 index 00000000..8169116e Binary files /dev/null and b/export-probe/sprites/title/build_01/pgloading_str.png differ diff --git a/export-probe/sprites/title/build_12/pgloading_baseeff.png b/export-probe/sprites/title/build_12/pgloading_baseeff.png new file mode 100644 index 00000000..423764c9 Binary files /dev/null and b/export-probe/sprites/title/build_12/pgloading_baseeff.png differ diff --git a/export-probe/sprites/title/build_12/pgloading_circle1.png b/export-probe/sprites/title/build_12/pgloading_circle1.png new file mode 100644 index 00000000..113d04fe Binary files /dev/null and b/export-probe/sprites/title/build_12/pgloading_circle1.png differ diff --git a/export-probe/sprites/title/build_12/pgloading_delta.png b/export-probe/sprites/title/build_12/pgloading_delta.png new file mode 100644 index 00000000..7d32021c Binary files /dev/null and b/export-probe/sprites/title/build_12/pgloading_delta.png differ diff --git a/export-probe/sprites/title/build_12/pgloading_eff01.png b/export-probe/sprites/title/build_12/pgloading_eff01.png new file mode 100644 index 00000000..67f1b5c0 Binary files /dev/null and b/export-probe/sprites/title/build_12/pgloading_eff01.png differ diff --git a/export-probe/sprites/title/build_12/pgloading_eff02.png b/export-probe/sprites/title/build_12/pgloading_eff02.png new file mode 100644 index 00000000..db059edb Binary files /dev/null and b/export-probe/sprites/title/build_12/pgloading_eff02.png differ diff --git a/export-probe/sprites/title/build_12/pgloading_line.png b/export-probe/sprites/title/build_12/pgloading_line.png new file mode 100644 index 00000000..a71d9d59 Binary files /dev/null and b/export-probe/sprites/title/build_12/pgloading_line.png differ diff --git a/export-probe/sprites/title/build_12/pgloading_processing.png b/export-probe/sprites/title/build_12/pgloading_processing.png new file mode 100644 index 00000000..5c3499f8 Binary files /dev/null and b/export-probe/sprites/title/build_12/pgloading_processing.png differ diff --git a/export-probe/sprites/title/build_12/pgloading_ring.png b/export-probe/sprites/title/build_12/pgloading_ring.png new file mode 100644 index 00000000..3317fbe8 Binary files /dev/null and b/export-probe/sprites/title/build_12/pgloading_ring.png differ diff --git a/export-probe/sprites/title/build_12/pgloading_str.png b/export-probe/sprites/title/build_12/pgloading_str.png new file mode 100644 index 00000000..8169116e Binary files /dev/null and b/export-probe/sprites/title/build_12/pgloading_str.png differ diff --git a/export-probe/sprites/title/build_15/pgloading_baseeff.png b/export-probe/sprites/title/build_15/pgloading_baseeff.png new file mode 100644 index 00000000..423764c9 Binary files /dev/null and b/export-probe/sprites/title/build_15/pgloading_baseeff.png differ diff --git a/export-probe/sprites/title/build_15/pgloading_circle1.png b/export-probe/sprites/title/build_15/pgloading_circle1.png new file mode 100644 index 00000000..113d04fe Binary files /dev/null and b/export-probe/sprites/title/build_15/pgloading_circle1.png differ diff --git a/export-probe/sprites/title/build_15/pgloading_delta.png b/export-probe/sprites/title/build_15/pgloading_delta.png new file mode 100644 index 00000000..7d32021c Binary files /dev/null and b/export-probe/sprites/title/build_15/pgloading_delta.png differ diff --git a/export-probe/sprites/title/build_15/pgloading_eff01.png b/export-probe/sprites/title/build_15/pgloading_eff01.png new file mode 100644 index 00000000..67f1b5c0 Binary files /dev/null and b/export-probe/sprites/title/build_15/pgloading_eff01.png differ diff --git a/export-probe/sprites/title/build_15/pgloading_eff02.png b/export-probe/sprites/title/build_15/pgloading_eff02.png new file mode 100644 index 00000000..db059edb Binary files /dev/null and b/export-probe/sprites/title/build_15/pgloading_eff02.png differ diff --git a/export-probe/sprites/title/build_15/pgloading_line.png b/export-probe/sprites/title/build_15/pgloading_line.png new file mode 100644 index 00000000..a71d9d59 Binary files /dev/null and b/export-probe/sprites/title/build_15/pgloading_line.png differ diff --git a/export-probe/sprites/title/build_15/pgloading_processing.png b/export-probe/sprites/title/build_15/pgloading_processing.png new file mode 100644 index 00000000..5c3499f8 Binary files /dev/null and b/export-probe/sprites/title/build_15/pgloading_processing.png differ diff --git a/export-probe/sprites/title/build_15/pgloading_ring.png b/export-probe/sprites/title/build_15/pgloading_ring.png new file mode 100644 index 00000000..3317fbe8 Binary files /dev/null and b/export-probe/sprites/title/build_15/pgloading_ring.png differ diff --git a/export-probe/sprites/title/build_15/pgloading_str.png b/export-probe/sprites/title/build_15/pgloading_str.png new file mode 100644 index 00000000..8169116e Binary files /dev/null and b/export-probe/sprites/title/build_15/pgloading_str.png differ diff --git a/export-probe/sprites/title/developer_logos/palogo_anima.png b/export-probe/sprites/title/developer_logos/palogo_anima.png new file mode 100644 index 00000000..89651e3c Binary files /dev/null and b/export-probe/sprites/title/developer_logos/palogo_anima.png differ diff --git a/export-probe/sprites/title/developer_logos/palogo_anima_eff.png b/export-probe/sprites/title/developer_logos/palogo_anima_eff.png new file mode 100644 index 00000000..05c03d9e Binary files /dev/null and b/export-probe/sprites/title/developer_logos/palogo_anima_eff.png differ diff --git a/export-probe/sprites/title/developer_logos/palogo_gamearts.png b/export-probe/sprites/title/developer_logos/palogo_gamearts.png new file mode 100644 index 00000000..aaa45675 Binary files /dev/null and b/export-probe/sprites/title/developer_logos/palogo_gamearts.png differ diff --git a/export-probe/sprites/title/developer_logos/palogo_gamearts_eff.png b/export-probe/sprites/title/developer_logos/palogo_gamearts_eff.png new file mode 100644 index 00000000..360639de Binary files /dev/null and b/export-probe/sprites/title/developer_logos/palogo_gamearts_eff.png differ diff --git a/export-probe/sprites/title/developer_logos/palogo_seta.png b/export-probe/sprites/title/developer_logos/palogo_seta.png new file mode 100644 index 00000000..dfff807b Binary files /dev/null and b/export-probe/sprites/title/developer_logos/palogo_seta.png differ diff --git a/export-probe/sprites/title/developer_logos/palogo_seta_eff.png b/export-probe/sprites/title/developer_logos/palogo_seta_eff.png new file mode 100644 index 00000000..75b223d0 Binary files /dev/null and b/export-probe/sprites/title/developer_logos/palogo_seta_eff.png differ diff --git a/export-probe/sprites/title/developer_logos_r/palogo_anima.png b/export-probe/sprites/title/developer_logos_r/palogo_anima.png new file mode 100644 index 00000000..89651e3c Binary files /dev/null and b/export-probe/sprites/title/developer_logos_r/palogo_anima.png differ diff --git a/export-probe/sprites/title/developer_logos_r/palogo_anima_eff.png b/export-probe/sprites/title/developer_logos_r/palogo_anima_eff.png new file mode 100644 index 00000000..05c03d9e Binary files /dev/null and b/export-probe/sprites/title/developer_logos_r/palogo_anima_eff.png differ diff --git a/export-probe/sprites/title/developer_logos_r/palogo_gamearts.png b/export-probe/sprites/title/developer_logos_r/palogo_gamearts.png new file mode 100644 index 00000000..aaa45675 Binary files /dev/null and b/export-probe/sprites/title/developer_logos_r/palogo_gamearts.png differ diff --git a/export-probe/sprites/title/developer_logos_r/palogo_gamearts_eff.png b/export-probe/sprites/title/developer_logos_r/palogo_gamearts_eff.png new file mode 100644 index 00000000..360639de Binary files /dev/null and b/export-probe/sprites/title/developer_logos_r/palogo_gamearts_eff.png differ diff --git a/export-probe/sprites/title/developer_logos_r/palogo_seta.png b/export-probe/sprites/title/developer_logos_r/palogo_seta.png new file mode 100644 index 00000000..11dd4965 Binary files /dev/null and b/export-probe/sprites/title/developer_logos_r/palogo_seta.png differ diff --git a/export-probe/sprites/title/developer_logos_r/palogo_seta_eff.png b/export-probe/sprites/title/developer_logos_r/palogo_seta_eff.png new file mode 100644 index 00000000..d37228ee Binary files /dev/null and b/export-probe/sprites/title/developer_logos_r/palogo_seta_eff.png differ diff --git a/export-probe/sprites/title/extras/ptbase.png b/export-probe/sprites/title/extras/ptbase.png new file mode 100644 index 00000000..8a39ffec Binary files /dev/null and b/export-probe/sprites/title/extras/ptbase.png differ diff --git a/export-probe/sprites/title/extras/ptbtn11.png b/export-probe/sprites/title/extras/ptbtn11.png new file mode 100644 index 00000000..83246e7c Binary files /dev/null and b/export-probe/sprites/title/extras/ptbtn11.png differ diff --git a/export-probe/sprites/title/extras/ptbtn11f.png b/export-probe/sprites/title/extras/ptbtn11f.png new file mode 100644 index 00000000..3195418d Binary files /dev/null and b/export-probe/sprites/title/extras/ptbtn11f.png differ diff --git a/export-probe/sprites/title/extras/ptbtn12.png b/export-probe/sprites/title/extras/ptbtn12.png new file mode 100644 index 00000000..1fb90aeb Binary files /dev/null and b/export-probe/sprites/title/extras/ptbtn12.png differ diff --git a/export-probe/sprites/title/extras/ptbtn12f.png b/export-probe/sprites/title/extras/ptbtn12f.png new file mode 100644 index 00000000..3a003e31 Binary files /dev/null and b/export-probe/sprites/title/extras/ptbtn12f.png differ diff --git a/export-probe/sprites/title/extras/ptbtn13.png b/export-probe/sprites/title/extras/ptbtn13.png new file mode 100644 index 00000000..48988c7a Binary files /dev/null and b/export-probe/sprites/title/extras/ptbtn13.png differ diff --git a/export-probe/sprites/title/extras/ptbtn13f.png b/export-probe/sprites/title/extras/ptbtn13f.png new file mode 100644 index 00000000..fca0966d Binary files /dev/null and b/export-probe/sprites/title/extras/ptbtn13f.png differ diff --git a/export-probe/sprites/title/extras/ptbtneff02.png b/export-probe/sprites/title/extras/ptbtneff02.png new file mode 100644 index 00000000..ec4c00ec Binary files /dev/null and b/export-probe/sprites/title/extras/ptbtneff02.png differ diff --git a/export-probe/sprites/title/extras/pteff03.png b/export-probe/sprites/title/extras/pteff03.png new file mode 100644 index 00000000..d1bac3a5 Binary files /dev/null and b/export-probe/sprites/title/extras/pteff03.png differ diff --git a/export-probe/sprites/title/extras/pteff03a.png b/export-probe/sprites/title/extras/pteff03a.png new file mode 100644 index 00000000..d1bac3a5 Binary files /dev/null and b/export-probe/sprites/title/extras/pteff03a.png differ diff --git a/export-probe/sprites/title/extras/pteff05.png b/export-probe/sprites/title/extras/pteff05.png new file mode 100644 index 00000000..0f823f63 Binary files /dev/null and b/export-probe/sprites/title/extras/pteff05.png differ diff --git a/export-probe/sprites/title/extras/pteff10.png b/export-probe/sprites/title/extras/pteff10.png new file mode 100644 index 00000000..24c1d81d Binary files /dev/null and b/export-probe/sprites/title/extras/pteff10.png differ diff --git a/export-probe/sprites/title/extras/pteff20.png b/export-probe/sprites/title/extras/pteff20.png new file mode 100644 index 00000000..8eedd1d5 Binary files /dev/null and b/export-probe/sprites/title/extras/pteff20.png differ diff --git a/export-probe/sprites/title/extras/pteff21.png b/export-probe/sprites/title/extras/pteff21.png new file mode 100644 index 00000000..d39c9e8b Binary files /dev/null and b/export-probe/sprites/title/extras/pteff21.png differ diff --git a/export-probe/sprites/title/extras/pteff22.png b/export-probe/sprites/title/extras/pteff22.png new file mode 100644 index 00000000..2cad6f47 Binary files /dev/null and b/export-probe/sprites/title/extras/pteff22.png differ diff --git a/export-probe/sprites/title/extras/pteff23.png b/export-probe/sprites/title/extras/pteff23.png new file mode 100644 index 00000000..c585dd7a Binary files /dev/null and b/export-probe/sprites/title/extras/pteff23.png differ diff --git a/export-probe/sprites/title/extras/ptframe3.png b/export-probe/sprites/title/extras/ptframe3.png new file mode 100644 index 00000000..236765ec Binary files /dev/null and b/export-probe/sprites/title/extras/ptframe3.png differ diff --git a/export-probe/sprites/title/extras/ptframe4.png b/export-probe/sprites/title/extras/ptframe4.png new file mode 100644 index 00000000..b8755735 Binary files /dev/null and b/export-probe/sprites/title/extras/ptframe4.png differ diff --git a/export-probe/sprites/title/extras/ptmsg2.png b/export-probe/sprites/title/extras/ptmsg2.png new file mode 100644 index 00000000..4680f7c4 Binary files /dev/null and b/export-probe/sprites/title/extras/ptmsg2.png differ diff --git a/export-probe/sprites/title/extras/pttitle.png b/export-probe/sprites/title/extras/pttitle.png new file mode 100644 index 00000000..84532e20 Binary files /dev/null and b/export-probe/sprites/title/extras/pttitle.png differ diff --git a/export-probe/sprites/title/extras_jp/ptbase.png b/export-probe/sprites/title/extras_jp/ptbase.png new file mode 100644 index 00000000..3a9867ee Binary files /dev/null and b/export-probe/sprites/title/extras_jp/ptbase.png differ diff --git a/export-probe/sprites/title/extras_jp/ptbtn11.png b/export-probe/sprites/title/extras_jp/ptbtn11.png new file mode 100644 index 00000000..66406874 Binary files /dev/null and b/export-probe/sprites/title/extras_jp/ptbtn11.png differ diff --git a/export-probe/sprites/title/extras_jp/ptbtn11f.png b/export-probe/sprites/title/extras_jp/ptbtn11f.png new file mode 100644 index 00000000..643d8896 Binary files /dev/null and b/export-probe/sprites/title/extras_jp/ptbtn11f.png differ diff --git a/export-probe/sprites/title/extras_jp/ptbtn12.png b/export-probe/sprites/title/extras_jp/ptbtn12.png new file mode 100644 index 00000000..e11fa30e Binary files /dev/null and b/export-probe/sprites/title/extras_jp/ptbtn12.png differ diff --git a/export-probe/sprites/title/extras_jp/ptbtn12f.png b/export-probe/sprites/title/extras_jp/ptbtn12f.png new file mode 100644 index 00000000..8a97a884 Binary files /dev/null and b/export-probe/sprites/title/extras_jp/ptbtn12f.png differ diff --git a/export-probe/sprites/title/extras_jp/ptbtn13.png b/export-probe/sprites/title/extras_jp/ptbtn13.png new file mode 100644 index 00000000..0a3cb1fc Binary files /dev/null and b/export-probe/sprites/title/extras_jp/ptbtn13.png differ diff --git a/export-probe/sprites/title/extras_jp/ptbtn13f.png b/export-probe/sprites/title/extras_jp/ptbtn13f.png new file mode 100644 index 00000000..0629882a Binary files /dev/null and b/export-probe/sprites/title/extras_jp/ptbtn13f.png differ diff --git a/export-probe/sprites/title/extras_jp/ptbtneff02.png b/export-probe/sprites/title/extras_jp/ptbtneff02.png new file mode 100644 index 00000000..ec4c00ec Binary files /dev/null and b/export-probe/sprites/title/extras_jp/ptbtneff02.png differ diff --git a/export-probe/sprites/title/extras_jp/pteff03.png b/export-probe/sprites/title/extras_jp/pteff03.png new file mode 100644 index 00000000..d1bac3a5 Binary files /dev/null and b/export-probe/sprites/title/extras_jp/pteff03.png differ diff --git a/export-probe/sprites/title/extras_jp/pteff03a.png b/export-probe/sprites/title/extras_jp/pteff03a.png new file mode 100644 index 00000000..d1bac3a5 Binary files /dev/null and b/export-probe/sprites/title/extras_jp/pteff03a.png differ diff --git a/export-probe/sprites/title/extras_jp/pteff05.png b/export-probe/sprites/title/extras_jp/pteff05.png new file mode 100644 index 00000000..c9b6386e Binary files /dev/null and b/export-probe/sprites/title/extras_jp/pteff05.png differ diff --git a/export-probe/sprites/title/extras_jp/pteff10.png b/export-probe/sprites/title/extras_jp/pteff10.png new file mode 100644 index 00000000..24c1d81d Binary files /dev/null and b/export-probe/sprites/title/extras_jp/pteff10.png differ diff --git a/export-probe/sprites/title/extras_jp/pteff20.png b/export-probe/sprites/title/extras_jp/pteff20.png new file mode 100644 index 00000000..8eedd1d5 Binary files /dev/null and b/export-probe/sprites/title/extras_jp/pteff20.png differ diff --git a/export-probe/sprites/title/extras_jp/pteff21.png b/export-probe/sprites/title/extras_jp/pteff21.png new file mode 100644 index 00000000..d39c9e8b Binary files /dev/null and b/export-probe/sprites/title/extras_jp/pteff21.png differ diff --git a/export-probe/sprites/title/extras_jp/pteff22.png b/export-probe/sprites/title/extras_jp/pteff22.png new file mode 100644 index 00000000..2cad6f47 Binary files /dev/null and b/export-probe/sprites/title/extras_jp/pteff22.png differ diff --git a/export-probe/sprites/title/extras_jp/pteff23.png b/export-probe/sprites/title/extras_jp/pteff23.png new file mode 100644 index 00000000..c585dd7a Binary files /dev/null and b/export-probe/sprites/title/extras_jp/pteff23.png differ diff --git a/export-probe/sprites/title/extras_jp/ptframe3.png b/export-probe/sprites/title/extras_jp/ptframe3.png new file mode 100644 index 00000000..236765ec Binary files /dev/null and b/export-probe/sprites/title/extras_jp/ptframe3.png differ diff --git a/export-probe/sprites/title/extras_jp/ptframe4.png b/export-probe/sprites/title/extras_jp/ptframe4.png new file mode 100644 index 00000000..b8755735 Binary files /dev/null and b/export-probe/sprites/title/extras_jp/ptframe4.png differ diff --git a/export-probe/sprites/title/extras_jp/ptmsg2.png b/export-probe/sprites/title/extras_jp/ptmsg2.png new file mode 100644 index 00000000..8f8844ed Binary files /dev/null and b/export-probe/sprites/title/extras_jp/ptmsg2.png differ diff --git a/export-probe/sprites/title/extras_jp/pttitle.png b/export-probe/sprites/title/extras_jp/pttitle.png new file mode 100644 index 00000000..610cac70 Binary files /dev/null and b/export-probe/sprites/title/extras_jp/pttitle.png differ diff --git a/export-probe/sprites/title/main_menu/ptbase.png b/export-probe/sprites/title/main_menu/ptbase.png new file mode 100644 index 00000000..8a39ffec Binary files /dev/null and b/export-probe/sprites/title/main_menu/ptbase.png differ diff --git a/export-probe/sprites/title/main_menu/ptbtn01.png b/export-probe/sprites/title/main_menu/ptbtn01.png new file mode 100644 index 00000000..95ff28d3 Binary files /dev/null and b/export-probe/sprites/title/main_menu/ptbtn01.png differ diff --git a/export-probe/sprites/title/main_menu/ptbtn01f.png b/export-probe/sprites/title/main_menu/ptbtn01f.png new file mode 100644 index 00000000..356560a2 Binary files /dev/null and b/export-probe/sprites/title/main_menu/ptbtn01f.png differ diff --git a/export-probe/sprites/title/main_menu/ptbtn02.png b/export-probe/sprites/title/main_menu/ptbtn02.png new file mode 100644 index 00000000..dabb0ae2 Binary files /dev/null and b/export-probe/sprites/title/main_menu/ptbtn02.png differ diff --git a/export-probe/sprites/title/main_menu/ptbtn02f.png b/export-probe/sprites/title/main_menu/ptbtn02f.png new file mode 100644 index 00000000..579e73a4 Binary files /dev/null and b/export-probe/sprites/title/main_menu/ptbtn02f.png differ diff --git a/export-probe/sprites/title/main_menu/ptbtn03.png b/export-probe/sprites/title/main_menu/ptbtn03.png new file mode 100644 index 00000000..05ca38c2 Binary files /dev/null and b/export-probe/sprites/title/main_menu/ptbtn03.png differ diff --git a/export-probe/sprites/title/main_menu/ptbtn03f.png b/export-probe/sprites/title/main_menu/ptbtn03f.png new file mode 100644 index 00000000..a7056000 Binary files /dev/null and b/export-probe/sprites/title/main_menu/ptbtn03f.png differ diff --git a/export-probe/sprites/title/main_menu/ptbtn04.png b/export-probe/sprites/title/main_menu/ptbtn04.png new file mode 100644 index 00000000..86ced127 Binary files /dev/null and b/export-probe/sprites/title/main_menu/ptbtn04.png differ diff --git a/export-probe/sprites/title/main_menu/ptbtn04f.png b/export-probe/sprites/title/main_menu/ptbtn04f.png new file mode 100644 index 00000000..8b76cf95 Binary files /dev/null and b/export-probe/sprites/title/main_menu/ptbtn04f.png differ diff --git a/export-probe/sprites/title/main_menu/ptbtn05.png b/export-probe/sprites/title/main_menu/ptbtn05.png new file mode 100644 index 00000000..ad994a0d Binary files /dev/null and b/export-probe/sprites/title/main_menu/ptbtn05.png differ diff --git a/export-probe/sprites/title/main_menu/ptbtn05f.png b/export-probe/sprites/title/main_menu/ptbtn05f.png new file mode 100644 index 00000000..58afb6ce Binary files /dev/null and b/export-probe/sprites/title/main_menu/ptbtn05f.png differ diff --git a/export-probe/sprites/title/main_menu/ptbtneff01.png b/export-probe/sprites/title/main_menu/ptbtneff01.png new file mode 100644 index 00000000..ec4c00ec Binary files /dev/null and b/export-probe/sprites/title/main_menu/ptbtneff01.png differ diff --git a/export-probe/sprites/title/main_menu/pteff03.png b/export-probe/sprites/title/main_menu/pteff03.png new file mode 100644 index 00000000..d1bac3a5 Binary files /dev/null and b/export-probe/sprites/title/main_menu/pteff03.png differ diff --git a/export-probe/sprites/title/main_menu/pteff03a.png b/export-probe/sprites/title/main_menu/pteff03a.png new file mode 100644 index 00000000..d1bac3a5 Binary files /dev/null and b/export-probe/sprites/title/main_menu/pteff03a.png differ diff --git a/export-probe/sprites/title/main_menu/pteff05.png b/export-probe/sprites/title/main_menu/pteff05.png new file mode 100644 index 00000000..0f823f63 Binary files /dev/null and b/export-probe/sprites/title/main_menu/pteff05.png differ diff --git a/export-probe/sprites/title/main_menu/pteff10.png b/export-probe/sprites/title/main_menu/pteff10.png new file mode 100644 index 00000000..24c1d81d Binary files /dev/null and b/export-probe/sprites/title/main_menu/pteff10.png differ diff --git a/export-probe/sprites/title/main_menu/pteff12.png b/export-probe/sprites/title/main_menu/pteff12.png new file mode 100644 index 00000000..01b910ba Binary files /dev/null and b/export-probe/sprites/title/main_menu/pteff12.png differ diff --git a/export-probe/sprites/title/main_menu/ptframe1.png b/export-probe/sprites/title/main_menu/ptframe1.png new file mode 100644 index 00000000..c5385cb5 Binary files /dev/null and b/export-probe/sprites/title/main_menu/ptframe1.png differ diff --git a/export-probe/sprites/title/main_menu/ptframe2.png b/export-probe/sprites/title/main_menu/ptframe2.png new file mode 100644 index 00000000..c43a45fd Binary files /dev/null and b/export-probe/sprites/title/main_menu/ptframe2.png differ diff --git a/export-probe/sprites/title/main_menu/ptmsg.png b/export-probe/sprites/title/main_menu/ptmsg.png new file mode 100644 index 00000000..122f9509 Binary files /dev/null and b/export-probe/sprites/title/main_menu/ptmsg.png differ diff --git a/export-probe/sprites/title/main_menu_jp/ptbase.png b/export-probe/sprites/title/main_menu_jp/ptbase.png new file mode 100644 index 00000000..3a9867ee Binary files /dev/null and b/export-probe/sprites/title/main_menu_jp/ptbase.png differ diff --git a/export-probe/sprites/title/main_menu_jp/ptbtn01.png b/export-probe/sprites/title/main_menu_jp/ptbtn01.png new file mode 100644 index 00000000..fe1e6dea Binary files /dev/null and b/export-probe/sprites/title/main_menu_jp/ptbtn01.png differ diff --git a/export-probe/sprites/title/main_menu_jp/ptbtn01f.png b/export-probe/sprites/title/main_menu_jp/ptbtn01f.png new file mode 100644 index 00000000..f1b7027c Binary files /dev/null and b/export-probe/sprites/title/main_menu_jp/ptbtn01f.png differ diff --git a/export-probe/sprites/title/main_menu_jp/ptbtn02.png b/export-probe/sprites/title/main_menu_jp/ptbtn02.png new file mode 100644 index 00000000..1a5489c0 Binary files /dev/null and b/export-probe/sprites/title/main_menu_jp/ptbtn02.png differ diff --git a/export-probe/sprites/title/main_menu_jp/ptbtn02f.png b/export-probe/sprites/title/main_menu_jp/ptbtn02f.png new file mode 100644 index 00000000..33d98894 Binary files /dev/null and b/export-probe/sprites/title/main_menu_jp/ptbtn02f.png differ diff --git a/export-probe/sprites/title/main_menu_jp/ptbtn03.png b/export-probe/sprites/title/main_menu_jp/ptbtn03.png new file mode 100644 index 00000000..70f3fe6e Binary files /dev/null and b/export-probe/sprites/title/main_menu_jp/ptbtn03.png differ diff --git a/export-probe/sprites/title/main_menu_jp/ptbtn03f.png b/export-probe/sprites/title/main_menu_jp/ptbtn03f.png new file mode 100644 index 00000000..1fb089b5 Binary files /dev/null and b/export-probe/sprites/title/main_menu_jp/ptbtn03f.png differ diff --git a/export-probe/sprites/title/main_menu_jp/ptbtn04.png b/export-probe/sprites/title/main_menu_jp/ptbtn04.png new file mode 100644 index 00000000..805fe574 Binary files /dev/null and b/export-probe/sprites/title/main_menu_jp/ptbtn04.png differ diff --git a/export-probe/sprites/title/main_menu_jp/ptbtn04f.png b/export-probe/sprites/title/main_menu_jp/ptbtn04f.png new file mode 100644 index 00000000..43d0c561 Binary files /dev/null and b/export-probe/sprites/title/main_menu_jp/ptbtn04f.png differ diff --git a/export-probe/sprites/title/main_menu_jp/ptbtn05.png b/export-probe/sprites/title/main_menu_jp/ptbtn05.png new file mode 100644 index 00000000..f0301900 Binary files /dev/null and b/export-probe/sprites/title/main_menu_jp/ptbtn05.png differ diff --git a/export-probe/sprites/title/main_menu_jp/ptbtn05f.png b/export-probe/sprites/title/main_menu_jp/ptbtn05f.png new file mode 100644 index 00000000..bacdef88 Binary files /dev/null and b/export-probe/sprites/title/main_menu_jp/ptbtn05f.png differ diff --git a/export-probe/sprites/title/main_menu_jp/ptbtneff01.png b/export-probe/sprites/title/main_menu_jp/ptbtneff01.png new file mode 100644 index 00000000..ec4c00ec Binary files /dev/null and b/export-probe/sprites/title/main_menu_jp/ptbtneff01.png differ diff --git a/export-probe/sprites/title/main_menu_jp/pteff03.png b/export-probe/sprites/title/main_menu_jp/pteff03.png new file mode 100644 index 00000000..d1bac3a5 Binary files /dev/null and b/export-probe/sprites/title/main_menu_jp/pteff03.png differ diff --git a/export-probe/sprites/title/main_menu_jp/pteff03a.png b/export-probe/sprites/title/main_menu_jp/pteff03a.png new file mode 100644 index 00000000..d1bac3a5 Binary files /dev/null and b/export-probe/sprites/title/main_menu_jp/pteff03a.png differ diff --git a/export-probe/sprites/title/main_menu_jp/pteff05.png b/export-probe/sprites/title/main_menu_jp/pteff05.png new file mode 100644 index 00000000..c9b6386e Binary files /dev/null and b/export-probe/sprites/title/main_menu_jp/pteff05.png differ diff --git a/export-probe/sprites/title/main_menu_jp/pteff10.png b/export-probe/sprites/title/main_menu_jp/pteff10.png new file mode 100644 index 00000000..24c1d81d Binary files /dev/null and b/export-probe/sprites/title/main_menu_jp/pteff10.png differ diff --git a/export-probe/sprites/title/main_menu_jp/pteff12.png b/export-probe/sprites/title/main_menu_jp/pteff12.png new file mode 100644 index 00000000..01b910ba Binary files /dev/null and b/export-probe/sprites/title/main_menu_jp/pteff12.png differ diff --git a/export-probe/sprites/title/main_menu_jp/ptframe1.png b/export-probe/sprites/title/main_menu_jp/ptframe1.png new file mode 100644 index 00000000..c5385cb5 Binary files /dev/null and b/export-probe/sprites/title/main_menu_jp/ptframe1.png differ diff --git a/export-probe/sprites/title/main_menu_jp/ptframe2.png b/export-probe/sprites/title/main_menu_jp/ptframe2.png new file mode 100644 index 00000000..c43a45fd Binary files /dev/null and b/export-probe/sprites/title/main_menu_jp/ptframe2.png differ diff --git a/export-probe/sprites/title/main_menu_jp/ptmsg.png b/export-probe/sprites/title/main_menu_jp/ptmsg.png new file mode 100644 index 00000000..82620b0d Binary files /dev/null and b/export-probe/sprites/title/main_menu_jp/ptmsg.png differ diff --git a/export-probe/sprites/title/press_start/ptbtn00.png b/export-probe/sprites/title/press_start/ptbtn00.png new file mode 100644 index 00000000..0e3aa8b4 Binary files /dev/null and b/export-probe/sprites/title/press_start/ptbtn00.png differ diff --git a/export-probe/sprites/title/press_start/ptbtn00f.png b/export-probe/sprites/title/press_start/ptbtn00f.png new file mode 100644 index 00000000..9990e5b5 Binary files /dev/null and b/export-probe/sprites/title/press_start/ptbtn00f.png differ diff --git a/export-probe/sprites/title/press_start_jp/ptbtn00.png b/export-probe/sprites/title/press_start_jp/ptbtn00.png new file mode 100644 index 00000000..0e3aa8b4 Binary files /dev/null and b/export-probe/sprites/title/press_start_jp/ptbtn00.png differ diff --git a/export-probe/sprites/title/press_start_jp/ptbtn00f.png b/export-probe/sprites/title/press_start_jp/ptbtn00f.png new file mode 100644 index 00000000..9990e5b5 Binary files /dev/null and b/export-probe/sprites/title/press_start_jp/ptbtn00f.png differ diff --git a/export-probe/sprites/title/publisher_logo/palogo_sqex.png b/export-probe/sprites/title/publisher_logo/palogo_sqex.png new file mode 100644 index 00000000..34936b8f Binary files /dev/null and b/export-probe/sprites/title/publisher_logo/palogo_sqex.png differ diff --git a/export-probe/sprites/title/publisher_logo/palogo_sqex_eff.png b/export-probe/sprites/title/publisher_logo/palogo_sqex_eff.png new file mode 100644 index 00000000..016b5335 Binary files /dev/null and b/export-probe/sprites/title/publisher_logo/palogo_sqex_eff.png differ diff --git a/export-probe/sprites/title/publisher_logo_r/palogo_sqex.png b/export-probe/sprites/title/publisher_logo_r/palogo_sqex.png new file mode 100644 index 00000000..1c5c5b09 Binary files /dev/null and b/export-probe/sprites/title/publisher_logo_r/palogo_sqex.png differ diff --git a/export-probe/sprites/title/publisher_logo_r/palogo_sqex_eff.png b/export-probe/sprites/title/publisher_logo_r/palogo_sqex_eff.png new file mode 100644 index 00000000..ef31c608 Binary files /dev/null and b/export-probe/sprites/title/publisher_logo_r/palogo_sqex_eff.png differ diff --git a/export-probe/sprites/title/title/ptbase2.png b/export-probe/sprites/title/title/ptbase2.png new file mode 100644 index 00000000..f26c53e7 Binary files /dev/null and b/export-probe/sprites/title/title/ptbase2.png differ diff --git a/export-probe/sprites/title/title/ptcopyright.png b/export-probe/sprites/title/title/ptcopyright.png new file mode 100644 index 00000000..6e609e0e Binary files /dev/null and b/export-probe/sprites/title/title/ptcopyright.png differ diff --git a/export-probe/sprites/title/title/pteff01.png b/export-probe/sprites/title/title/pteff01.png new file mode 100644 index 00000000..db4d7d89 Binary files /dev/null and b/export-probe/sprites/title/title/pteff01.png differ diff --git a/export-probe/sprites/title/title/pteff03.png b/export-probe/sprites/title/title/pteff03.png new file mode 100644 index 00000000..d1bac3a5 Binary files /dev/null and b/export-probe/sprites/title/title/pteff03.png differ diff --git a/export-probe/sprites/title/title/pteff03a.png b/export-probe/sprites/title/title/pteff03a.png new file mode 100644 index 00000000..d1bac3a5 Binary files /dev/null and b/export-probe/sprites/title/title/pteff03a.png differ diff --git a/export-probe/sprites/title/title/pteff04.png b/export-probe/sprites/title/title/pteff04.png new file mode 100644 index 00000000..c3c836a7 Binary files /dev/null and b/export-probe/sprites/title/title/pteff04.png differ diff --git a/export-probe/sprites/title/title/ptlogo1.png b/export-probe/sprites/title/title/ptlogo1.png new file mode 100644 index 00000000..dc74157b Binary files /dev/null and b/export-probe/sprites/title/title/ptlogo1.png differ diff --git a/export-probe/sprites/title/title/ptlogo2.png b/export-probe/sprites/title/title/ptlogo2.png new file mode 100644 index 00000000..cf120605 Binary files /dev/null and b/export-probe/sprites/title/title/ptlogo2.png differ diff --git a/export-probe/sprites/title/title/ptlogo_back2.png b/export-probe/sprites/title/title/ptlogo_back2.png new file mode 100644 index 00000000..b0c4b8fb Binary files /dev/null and b/export-probe/sprites/title/title/ptlogo_back2.png differ diff --git a/export-probe/sprites/title/title/ptlogo_back2eff.png b/export-probe/sprites/title/title/ptlogo_back2eff.png new file mode 100644 index 00000000..aeae0808 Binary files /dev/null and b/export-probe/sprites/title/title/ptlogo_back2eff.png differ diff --git a/export-probe/sprites/title/title/ptlogo_back2eff1.png b/export-probe/sprites/title/title/ptlogo_back2eff1.png new file mode 100644 index 00000000..efe0b567 Binary files /dev/null and b/export-probe/sprites/title/title/ptlogo_back2eff1.png differ diff --git a/export-probe/sprites/title/title/ptlogo_back2eff2.png b/export-probe/sprites/title/title/ptlogo_back2eff2.png new file mode 100644 index 00000000..8acfb5da Binary files /dev/null and b/export-probe/sprites/title/title/ptlogo_back2eff2.png differ diff --git a/export-probe/sprites/title/title/ptlogo_back2eff3.png b/export-probe/sprites/title/title/ptlogo_back2eff3.png new file mode 100644 index 00000000..9dc17586 Binary files /dev/null and b/export-probe/sprites/title/title/ptlogo_back2eff3.png differ diff --git a/export-probe/sprites/title/title/ptlogo_back2eff4.png b/export-probe/sprites/title/title/ptlogo_back2eff4.png new file mode 100644 index 00000000..55193efe Binary files /dev/null and b/export-probe/sprites/title/title/ptlogo_back2eff4.png differ diff --git a/export-probe/sprites/title/title/ptlogo_back2eff5.png b/export-probe/sprites/title/title/ptlogo_back2eff5.png new file mode 100644 index 00000000..34a41c96 Binary files /dev/null and b/export-probe/sprites/title/title/ptlogo_back2eff5.png differ diff --git a/export-probe/sprites/title/title/ptlogo_tm.png b/export-probe/sprites/title/title/ptlogo_tm.png new file mode 100644 index 00000000..277e6770 Binary files /dev/null and b/export-probe/sprites/title/title/ptlogo_tm.png differ diff --git a/export-probe/sprites/title/title/ptlogoall_eff.png b/export-probe/sprites/title/title/ptlogoall_eff.png new file mode 100644 index 00000000..99cb9401 Binary files /dev/null and b/export-probe/sprites/title/title/ptlogoall_eff.png differ diff --git a/export-probe/sprites/title/title/ptlogoall_eff2.png b/export-probe/sprites/title/title/ptlogoall_eff2.png new file mode 100644 index 00000000..a4058c60 Binary files /dev/null and b/export-probe/sprites/title/title/ptlogoall_eff2.png differ diff --git a/export-probe/sprites/title/title_jp/ptbase2.png b/export-probe/sprites/title/title_jp/ptbase2.png new file mode 100644 index 00000000..f26c53e7 Binary files /dev/null and b/export-probe/sprites/title/title_jp/ptbase2.png differ diff --git a/export-probe/sprites/title/title_jp/ptcopyright.png b/export-probe/sprites/title/title_jp/ptcopyright.png new file mode 100644 index 00000000..6e609e0e Binary files /dev/null and b/export-probe/sprites/title/title_jp/ptcopyright.png differ diff --git a/export-probe/sprites/title/title_jp/pteff03.png b/export-probe/sprites/title/title_jp/pteff03.png new file mode 100644 index 00000000..d1bac3a5 Binary files /dev/null and b/export-probe/sprites/title/title_jp/pteff03.png differ diff --git a/export-probe/sprites/title/title_jp/pteff03a.png b/export-probe/sprites/title/title_jp/pteff03a.png new file mode 100644 index 00000000..d1bac3a5 Binary files /dev/null and b/export-probe/sprites/title/title_jp/pteff03a.png differ diff --git a/export-probe/sprites/title/title_jp/pteff04.png b/export-probe/sprites/title/title_jp/pteff04.png new file mode 100644 index 00000000..c3c836a7 Binary files /dev/null and b/export-probe/sprites/title/title_jp/pteff04.png differ diff --git a/export-probe/sprites/title/title_jp/ptlogo1.png b/export-probe/sprites/title/title_jp/ptlogo1.png new file mode 100644 index 00000000..262f3225 Binary files /dev/null and b/export-probe/sprites/title/title_jp/ptlogo1.png differ diff --git a/export-probe/sprites/title/title_jp/ptlogo2.png b/export-probe/sprites/title/title_jp/ptlogo2.png new file mode 100644 index 00000000..06d1d464 Binary files /dev/null and b/export-probe/sprites/title/title_jp/ptlogo2.png differ diff --git a/export-probe/sprites/title/title_jp/ptlogo3a.png b/export-probe/sprites/title/title_jp/ptlogo3a.png new file mode 100644 index 00000000..ea463c46 Binary files /dev/null and b/export-probe/sprites/title/title_jp/ptlogo3a.png differ diff --git a/export-probe/sprites/title/title_jp/ptlogo3b.png b/export-probe/sprites/title/title_jp/ptlogo3b.png new file mode 100644 index 00000000..aedeef7e Binary files /dev/null and b/export-probe/sprites/title/title_jp/ptlogo3b.png differ diff --git a/export-probe/sprites/title/title_jp/ptlogo3c.png b/export-probe/sprites/title/title_jp/ptlogo3c.png new file mode 100644 index 00000000..258d62ea Binary files /dev/null and b/export-probe/sprites/title/title_jp/ptlogo3c.png differ diff --git a/export-probe/sprites/title/title_jp/ptlogo_all_eff.png b/export-probe/sprites/title/title_jp/ptlogo_all_eff.png new file mode 100644 index 00000000..53b29748 Binary files /dev/null and b/export-probe/sprites/title/title_jp/ptlogo_all_eff.png differ diff --git a/export-probe/sprites/title/title_jp/ptlogo_back1.png b/export-probe/sprites/title/title_jp/ptlogo_back1.png new file mode 100644 index 00000000..7573ac61 Binary files /dev/null and b/export-probe/sprites/title/title_jp/ptlogo_back1.png differ diff --git a/export-probe/sprites/title/title_jp/ptlogo_back2.png b/export-probe/sprites/title/title_jp/ptlogo_back2.png new file mode 100644 index 00000000..8f2ca477 Binary files /dev/null and b/export-probe/sprites/title/title_jp/ptlogo_back2.png differ diff --git a/export-probe/sprites/title/title_jp/ptlogo_back2eff.png b/export-probe/sprites/title/title_jp/ptlogo_back2eff.png new file mode 100644 index 00000000..588e0d34 Binary files /dev/null and b/export-probe/sprites/title/title_jp/ptlogo_back2eff.png differ diff --git a/export-probe/sprites/title/title_jp/ptlogo_back2eff1.png b/export-probe/sprites/title/title_jp/ptlogo_back2eff1.png new file mode 100644 index 00000000..31022d13 Binary files /dev/null and b/export-probe/sprites/title/title_jp/ptlogo_back2eff1.png differ diff --git a/export-probe/sprites/title/title_jp/ptlogo_back2eff2.png b/export-probe/sprites/title/title_jp/ptlogo_back2eff2.png new file mode 100644 index 00000000..821c1a0f Binary files /dev/null and b/export-probe/sprites/title/title_jp/ptlogo_back2eff2.png differ diff --git a/export-probe/sprites/title/title_jp/ptlogo_back2eff3.png b/export-probe/sprites/title/title_jp/ptlogo_back2eff3.png new file mode 100644 index 00000000..691262a0 Binary files /dev/null and b/export-probe/sprites/title/title_jp/ptlogo_back2eff3.png differ diff --git a/export-probe/sprites/title/title_jp/ptlogo_back2eff4.png b/export-probe/sprites/title/title_jp/ptlogo_back2eff4.png new file mode 100644 index 00000000..9589da9b Binary files /dev/null and b/export-probe/sprites/title/title_jp/ptlogo_back2eff4.png differ diff --git a/export-probe/sprites/title/title_jp/ptlogo_back2eff5.png b/export-probe/sprites/title/title_jp/ptlogo_back2eff5.png new file mode 100644 index 00000000..c8184bd6 Binary files /dev/null and b/export-probe/sprites/title/title_jp/ptlogo_back2eff5.png differ diff --git a/export-probe/sprites/title/title_jp/ptlogo_eff2.png b/export-probe/sprites/title/title_jp/ptlogo_eff2.png new file mode 100644 index 00000000..41c0d855 Binary files /dev/null and b/export-probe/sprites/title/title_jp/ptlogo_eff2.png differ diff --git a/export-probe/sprites/title/title_jp/ptlogo_eff3.png b/export-probe/sprites/title/title_jp/ptlogo_eff3.png new file mode 100644 index 00000000..f69492d3 Binary files /dev/null and b/export-probe/sprites/title/title_jp/ptlogo_eff3.png differ diff --git a/export-probe/sprites/title/title_jp/ptlogo_jp.png b/export-probe/sprites/title/title_jp/ptlogo_jp.png new file mode 100644 index 00000000..8fdf319f Binary files /dev/null and b/export-probe/sprites/title/title_jp/ptlogo_jp.png differ diff --git a/export-probe/sprites/title/title_jp/ptlogo_jpeff.png b/export-probe/sprites/title/title_jp/ptlogo_jpeff.png new file mode 100644 index 00000000..b2619283 Binary files /dev/null and b/export-probe/sprites/title/title_jp/ptlogo_jpeff.png differ diff --git a/export-probe/sprites/title/title_jp/ptlogo_tm.png b/export-probe/sprites/title/title_jp/ptlogo_tm.png new file mode 100644 index 00000000..75a5b0fc Binary files /dev/null and b/export-probe/sprites/title/title_jp/ptlogo_tm.png differ diff --git a/export-probe/video/ADV.cmd b/export-probe/video/ADV.cmd new file mode 100644 index 00000000..d416cd99 --- /dev/null +++ b/export-probe/video/ADV.cmd @@ -0,0 +1,8 @@ +# Generated by sylpheed-export. NOT an asset and not hand-editable: this +# records how ADV.ogv beside it was encoded, so a re-export can skip the +# encode when the source and the command are both unchanged. Deleting it +# only forces one re-encode. To change the video, override the .ogv under +# data/mods/ (MODDING rule 4) -- editing this file changes nothing. +ffmpeg -hide_banner -loglevel error -y -i /disc/dat/movie/ADV.wmv -c:v libtheora -q:v 8 -c:a libvorbis -q:a 5 -af pan=stereo|FL=0.4142*FL+0.2929*FC+0.2929*BL |FR=0.4142*FR+0.2929*FC+0.2929*BR -ac 2 export-probe/video/ADV.ogv +source-bytes: 77616908 +source-channels: 6 diff --git a/export-probe/video/ADV.ogv b/export-probe/video/ADV.ogv new file mode 100644 index 00000000..6cec6aab Binary files /dev/null and b/export-probe/video/ADV.ogv differ diff --git a/export-probe/video/S00A.cmd b/export-probe/video/S00A.cmd new file mode 100644 index 00000000..55fb6273 --- /dev/null +++ b/export-probe/video/S00A.cmd @@ -0,0 +1,8 @@ +# Generated by sylpheed-export. NOT an asset and not hand-editable: this +# records how S00A.ogv beside it was encoded, so a re-export can skip the +# encode when the source and the command are both unchanged. Deleting it +# only forces one re-encode. To change the video, override the .ogv under +# data/mods/ (MODDING rule 4) -- editing this file changes nothing. +ffmpeg -hide_banner -loglevel error -y -i /disc/dat/movie/S00A.wmv -c:v libtheora -q:v 8 -c:a libvorbis -q:a 5 -af pan=stereo|FL=0.4142*FL+0.2929*FC+0.2929*BL |FR=0.4142*FR+0.2929*FC+0.2929*BR -ac 2 export-probe/video/S00A.ogv +source-bytes: 88942994 +source-channels: 6 diff --git a/export-probe/video/S00A.ogv b/export-probe/video/S00A.ogv new file mode 100644 index 00000000..30c52edf Binary files /dev/null and b/export-probe/video/S00A.ogv differ