Skip to content

Commit 6605f21

Browse files
committed
🐛 fix CI compilation issues and fix bug in tutorial on linux
1 parent 43fd317 commit 6605f21

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
- uses: actions/checkout@v6
7070
name: 📂 Checkout
7171
with:
72-
lfs: false
72+
lfs: true
7373

7474
- uses: actions-rust-lang/setup-rust-toolchain@ca4a6432af353637602348dec3df861ef02ed8a6
7575
name: ⚙️ Setup Rust
@@ -161,7 +161,7 @@ jobs:
161161
- uses: actions/checkout@v6
162162
name: 📂 Checkout
163163
with:
164-
lfs: false
164+
lfs: true
165165

166166
- uses: actions-rust-lang/setup-rust-toolchain@ca4a6432af353637602348dec3df861ef02ed8a6
167167
name: ⚙️ Setup Rust

gallery/Learn Vectarine/scripts/game.luau

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ local fontResource = Loader.loadFont("fonts/arial.ttf")
3636

3737
local circle = Persist.onReload(Vec4.createColor(0, 0, 0, 1), "circle")
3838

39+
Io.setResizeable(true) -- The base window size can be small for some people
40+
3941
function drawTextCentered(
4042
text: string,
4143
position: Coord.ScreenPosition,
@@ -259,8 +261,8 @@ function Update(time_delta: number)
259261
Io.setFullscreen("desktop")
260262
Io.setWindowSize(screen.x, screen.y)
261263
else
264+
-- Io.setWindowSize(800, 600)
262265
Io.setFullscreen(false)
263-
Io.setWindowSize(800, 600)
264266
end
265267

266268
mouse_position.x = Io.getMouse().x

0 commit comments

Comments
 (0)