Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

💄 add finishing touches to cave decorations + history area #227

Merged
merged 25 commits into from
Oct 16, 2024
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
e69a747
💄 add reward hats display area
TheAfroOfDoom Oct 13, 2024
ff71f38
🔧 prune unnecessary decorative models/textures from build
TheAfroOfDoom Oct 13, 2024
c7005cf
💄 add how-to-play text displays
TheAfroOfDoom Oct 13, 2024
b41299b
💄 add hint for rare balloon
TheAfroOfDoom Oct 13, 2024
e65c388
💄 add model history display in back of cave
TheAfroOfDoom Oct 14, 2024
bf8d905
💄 add "HISTORY" room title
TheAfroOfDoom Oct 15, 2024
ec82a1e
🚚 move backroom cave stuff to separate dir
TheAfroOfDoom Oct 15, 2024
fa8a6bb
🍱 add border to pictures
TheAfroOfDoom Oct 15, 2024
f7cc838
💄 add legacy map history in back cave
TheAfroOfDoom Oct 15, 2024
dc61ece
🐛 add picture models to build
TheAfroOfDoom Oct 15, 2024
c428266
💄 add Animated Java callout in back cave
TheAfroOfDoom Oct 15, 2024
68f3b8a
💄 add housefly trivia section
TheAfroOfDoom Oct 15, 2024
f5fe48c
🌎 summit: update back cave (lights, minor structure tweaks)
TheAfroOfDoom Oct 15, 2024
1ad0369
💄 colorize back cave legacy map history text
TheAfroOfDoom Oct 15, 2024
0873965
💄 colorize back cave housefly trivia
TheAfroOfDoom Oct 15, 2024
fd969c6
💄 colorize back cave Animated Java shoutout
TheAfroOfDoom Oct 15, 2024
21a100d
📍 move AJ shoutout display back -1 block in X and Z
TheAfroOfDoom Oct 15, 2024
d98347f
⚰️ delete `open_url` code from github text link
TheAfroOfDoom Oct 15, 2024
ff8e73f
🚸 add Animated Java link
TheAfroOfDoom Oct 15, 2024
0faff11
🚸 add Github link to back cave history
TheAfroOfDoom Oct 15, 2024
f090e1f
🚚 move original github link interaction code to `interacted` directory
TheAfroOfDoom Oct 15, 2024
d017d11
💄 make GitHub text gray
TheAfroOfDoom Oct 15, 2024
c468b5e
🔥 remove unused screenshot sources
TheAfroOfDoom Oct 16, 2024
37096cd
🔧 update build export config
TheAfroOfDoom Oct 16, 2024
1b69027
🚸 add feedback form link
TheAfroOfDoom Oct 16, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
💄 colorize back cave Animated Java shoutout
  • Loading branch information
TheAfroOfDoom committed Oct 15, 2024
commit fd969c6dea95084958dda0870e987e429333a534
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,10 @@ summon minecraft:text_display -150.99 44.125 42.0 { \
line_width: 200, \
see_through: 0b, \
shadow: 0b, \
text: '"This project was\\nlargely motivated by\\nand possible thanks\\nto Animated Java"', \
text: '[ \
"This project was\\nlargely motivated by\\nand possible thanks\\nto ", \
{ "text": "Animated Java", "color": "#00ACED" } \
]', \
text_opacity: 255, \
transformation: { \
left_rotation: [0.0f, 0.7071068f, 0.0f, 0.7071068f], \
Expand All @@ -220,7 +223,13 @@ summon minecraft:text_display -150.99 41.1875 42.0 { \
line_width: 200, \
see_through: 0b, \
shadow: 0b, \
text: '"They\'re here at\\nSmithed Summit too!\\nGo check out\\ntheir booth!"', \
text: '[ \
"They\'re here at\\n", \
{ "text": "Smithed Summit ", "color": "blue" }, \
"too!\\nGo check out\\ntheir ", \
{ "text": "booth", "color": "#00ACED" }, \
"!" \
]', \
text_opacity: 255, \
transformation: { \
left_rotation: [0.0f, 0.7071068f, 0.0f, 0.7071068f], \
Expand Down