this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

change splash screen

voigt.tngl.sh ec541e3d 605b9fed

verified
+4 -7
+1 -1
firefly.toml
··· 5 5 6 6 [files] 7 7 font = { path = "eg_6x10.fff", url = "https://fonts.fireflyzero.com/fonts/ascii/eg_6x10.fff" } 8 - start = { path = "img/firefly_tetris_splash.png" } 9 8 versionFont = { path = "eg_4x6.fff", url = "https://fonts.fireflyzero.com/fonts/ascii/eg_4x6.fff" } 9 + start = { path = "img/luminos_splash_240x160.png" } 10 10 11 11 [cheats] 12 12 set-level = 1
img/luminos_splash_240x160.png

This is a binary file and will not be displayed.

+3 -3
screen_start.go
··· 37 37 38 38 func (ss *StartScreen) OnEnter() { 39 39 // Configuration for the sprite animation 40 - ss.totalFrames = 4 // 4 sprites in the sheet 40 + ss.totalFrames = 1 // 4 sprites in the sheet 41 41 ss.framesPerSprite = 30 // Change sprite every 60 frames 42 42 ss.currentFrame = 0 43 43 ss.frameCounter = 0 ··· 114 114 // Draw Menu 115 115 for i, item := range ss.MenuList { 116 116 y := ff.Height/2 + i*13 117 - fontColor := ff.ColorWhite 117 + fontColor := ff.ColorBlue 118 118 if item.Selected { 119 - fontColor = ff.ColorLightGray 119 + fontColor = ff.ColorLightBlue 120 120 } 121 121 ff.DrawText( 122 122 item.Key,
-3
version.go
··· 1 - package main 2 - 3 - var Version = "main"