Skip to content

Commit 1e00c14

Browse files
committed
Added icons and custom boot splash.
Each platform has the appropriate icons file provided along with the Krita project file with the icon in vector graphics. The splash screen is a 1024 image.
1 parent 646f7bf commit 1e00c14

File tree

9 files changed

+73
-11
lines changed

9 files changed

+73
-11
lines changed

Assets/Resources/Icons/Icons.icns

87.3 KB
Binary file not shown.

Assets/Resources/Icons/icon.ico

102 KB
Binary file not shown.

Assets/Resources/Icons/icon.kra

24.5 KB
Binary file not shown.

Assets/Resources/Icons/icon.png

6.16 KB
Loading
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
[remap]
2+
3+
importer="texture"
4+
type="StreamTexture"
5+
path="res://.import/icon.png-c206ee1bd3c276c52593bc69d708d362.stex"
6+
metadata={
7+
"vram_texture": false
8+
}
9+
10+
[deps]
11+
12+
source_file="res://Assets/Resources/Icons/icon.png"
13+
dest_files=[ "res://.import/icon.png-c206ee1bd3c276c52593bc69d708d362.stex" ]
14+
15+
[params]
16+
17+
compress/mode=0
18+
compress/lossy_quality=0.7
19+
compress/hdr_mode=0
20+
compress/bptc_ldr=0
21+
compress/normal_map=0
22+
flags/repeat=0
23+
flags/filter=true
24+
flags/mipmaps=false
25+
flags/anisotropic=false
26+
flags/srgb=2
27+
process/fix_alpha_border=true
28+
process/premult_alpha=false
29+
process/HDR_as_SRGB=false
30+
process/invert_color=false
31+
stream=false
32+
size_limit=0
33+
detect_3d=true
34+
svg/scale=1.0
37.2 KB
Loading
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
[remap]
2+
3+
importer="texture"
4+
type="StreamTexture"
5+
path="res://.import/icon_1024.png-615a6986312fc0b6862825d9ffba652e.stex"
6+
metadata={
7+
"vram_texture": false
8+
}
9+
10+
[deps]
11+
12+
source_file="res://Assets/Resources/Icons/icon_1024.png"
13+
dest_files=[ "res://.import/icon_1024.png-615a6986312fc0b6862825d9ffba652e.stex" ]
14+
15+
[params]
16+
17+
compress/mode=0
18+
compress/lossy_quality=0.7
19+
compress/hdr_mode=0
20+
compress/bptc_ldr=0
21+
compress/normal_map=0
22+
flags/repeat=0
23+
flags/filter=true
24+
flags/mipmaps=false
25+
flags/anisotropic=false
26+
flags/srgb=2
27+
process/fix_alpha_border=true
28+
process/premult_alpha=false
29+
process/HDR_as_SRGB=false
30+
process/invert_color=false
31+
stream=false
32+
size_limit=0
33+
detect_3d=true
34+
svg/scale=1.0

TODO.md

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,6 @@
11
# Overview
22
This document provides a location to place all future tasks.
33

4-
## v0.2
5-
- [x] Ability to save snippets. Each snippet should have 2 files. One is SNIPPET_NAME.lua and the other will be SNIPPET_NAME_tests.lua
6-
- [x] Get working project for Linux.
7-
- [ ] Change icon.
8-
- [ ] Change splash screen.
9-
- [x] Change 'File' menu bar icon.
10-
- [x] Runtime visualization.
11-
- [x] Change highlight color of context menus.
12-
- [x] Documentation.
13-
144
## Unsorted
155
* Left click and drag to make a selection box on the UI layer. After completion, should check to see if any snippets are enclosed in the region's world space.
166
* Make moving windows transparent. Similar to Kubuntu windows.
@@ -37,3 +27,4 @@ This document provides a location to place all future tasks.
3727
* BUG: Resizing viewport will resize all FloatingWindow instances.
3828
* BUG: Curve control points not properly aligned when modifying an output connection.
3929
* Allow unit test to define values used in the snippet.
30+
* Maybe have function inheritance?

project.godot

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,10 @@ _global_script_class_icons={
220220

221221
config/name="Snippet"
222222
run/main_scene="res://Assets/Main.tscn"
223-
config/icon="res://icon.png"
223+
boot_splash/image="res://Assets/Resources/Icons/icon_1024.png"
224+
config/icon="res://Assets/Resources/Icons/icon.png"
225+
config/macos_native_icon="res://Assets/Resources/Icons/Icons.icns"
226+
config/windows_native_icon="res://Assets/Resources/Icons/icon.ico"
224227

225228
[autoload]
226229

0 commit comments

Comments
 (0)