Skip to content

Commit 2fe6f71

Browse files
authored
Refine remotion mascot variants (tinyhumansai#1361)
1 parent b6d05cb commit 2fe6f71

54 files changed

Lines changed: 158 additions & 1254 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

remotion/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ pnpm dev
2828
**Render a single variant** (produces `out/<CompositionId>.mov` — transparent ProRes 4444)
2929

3030
```console
31-
pnpm render GhostyWave
31+
pnpm render mascot-yellow-wave
3232
```
3333

3434
**Render all variants**

remotion/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"upgrade": "remotion upgrade",
3131
"lint": "eslint src && tsc",
3232
"render": "./scripts/render-transparent.sh",
33-
"render:all": "./scripts/render-transparent.sh GhostyWave GhostyIdle GhostyRecording GhostyLoading GhostyPickup",
33+
"render:all": "./scripts/render-transparent.sh mascot-yellow-wave mascot-yellow-idle mascot-yellow-pickup mascot-yellow-talking mascot-yellow-thinking mascot-yellow-sleep",
3434
"render:runtime-assets": "node ./scripts/render-runtime-assets.mjs"
3535
},
3636
"sideEffects": [

remotion/scripts/render-runtime-assets.mjs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,21 +60,21 @@ function resolveColorSet() {
6060
const colors = resolveColorSet();
6161
console.log(`[remotion-runtime-assets] rendering colors: ${colors.join(', ')}`);
6262
const baseVariants = [
63-
{ composition: 'yellow-MascotIdle', profile: 'default', props: {} },
64-
{ composition: 'yellow-MascotTalking', profile: 'default', props: {} },
65-
{ composition: 'yellow-MascotThinking', profile: 'default', props: {} },
63+
{ composition: 'mascot-yellow-idle', profile: 'default', props: {} },
64+
{ composition: 'mascot-yellow-talking', profile: 'default', props: {} },
65+
{ composition: 'mascot-yellow-thinking', profile: 'default', props: {} },
6666
{
67-
composition: 'yellow-MascotIdle',
67+
composition: 'mascot-yellow-idle',
6868
profile: 'compact',
6969
props: { groundShadowOpacity: 0.75, compactArmShading: true },
7070
},
7171
{
72-
composition: 'yellow-MascotTalking',
72+
composition: 'mascot-yellow-talking',
7373
profile: 'compact',
7474
props: { groundShadowOpacity: 0.75, compactArmShading: true },
7575
},
7676
{
77-
composition: 'yellow-MascotThinking',
77+
composition: 'mascot-yellow-thinking',
7878
profile: 'compact',
7979
props: { groundShadowOpacity: 0.75, compactArmShading: true },
8080
},

remotion/scripts/render-transparent.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#!/usr/bin/env bash
2-
# Render one or more Ghosty compositions as transparent ProRes 4444 .mov files.
2+
# Render one or more mascot compositions as transparent ProRes 4444 .mov files.
33
#
44
# Usage:
5-
# ./scripts/render-transparent.sh # renders GhostyWave by default
6-
# ./scripts/render-transparent.sh GhostyRecording # renders one composition
7-
# ./scripts/render-transparent.sh GhostyWave GhostyIdle # renders multiple
5+
# ./scripts/render-transparent.sh # renders mascot-yellow-wave by default
6+
# ./scripts/render-transparent.sh mascot-yellow-talking # renders one composition
7+
# ./scripts/render-transparent.sh mascot-yellow-wave mascot-black-wave # renders multiple
88
# pnpm render:all # renders every variant
99
#
1010
# Output: out/<CompositionId>.mov
@@ -15,7 +15,7 @@ mkdir -p out
1515

1616
COMPS=("$@")
1717
if [ ${#COMPS[@]} -eq 0 ]; then
18-
COMPS=("GhostyWave")
18+
COMPS=("mascot-yellow-wave")
1919
fi
2020

2121
for comp in "${COMPS[@]}"; do

remotion/src/Ghosty/Ghosty.tsx

Lines changed: 0 additions & 10 deletions
This file was deleted.

remotion/src/Ghosty/GhostyIdle.tsx

Lines changed: 0 additions & 10 deletions
This file was deleted.

remotion/src/Ghosty/GhostyLoading.tsx

Lines changed: 0 additions & 15 deletions
This file was deleted.

remotion/src/Ghosty/GhostyPickup.tsx

Lines changed: 0 additions & 63 deletions
This file was deleted.

remotion/src/Ghosty/GhostyRecording.tsx

Lines changed: 0 additions & 16 deletions
This file was deleted.

remotion/src/Ghosty/lib/Defs.tsx

Lines changed: 0 additions & 69 deletions
This file was deleted.

0 commit comments

Comments
 (0)