1
0
Fork 0
mirror of https://github.com/Orama-Interactive/Pixelorama.git synced 2025-01-31 07:29:49 +00:00

Changed "become a patron" button on the splash screen

This commit is contained in:
OverloadedOrama 2020-01-05 20:13:55 +02:00
parent 1b57c4ee22
commit a04e179611
8 changed files with 18 additions and 17 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.1 KiB

View file

@ -2,15 +2,15 @@
importer="texture"
type="StreamTexture"
path="res://.import/Patron Button.png-c0e5b2ecd47261e9d545cc77e7063cb1.stex"
path="res://.import/Become a patron.png-45ae52076f8b13824fd1a3aaf4b2101a.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Assets/Graphics/Patron Button.png"
dest_files=[ "res://.import/Patron Button.png-c0e5b2ecd47261e9d545cc77e7063cb1.stex" ]
source_file="res://Assets/Graphics/Become a patron.png"
dest_files=[ "res://.import/Become a patron.png-45ae52076f8b13824fd1a3aaf4b2101a.stex" ]
[params]

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.9 KiB

View file

@ -2,15 +2,15 @@
importer="texture"
type="StreamTexture"
path="res://.import/Patron Button Hover.png-8fc60b776206b9abfa94306023859853.stex"
path="res://.import/Become a patron_Hover.png-8a75baaaa2b3ce60a939e5c77977d33b.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Assets/Graphics/Patron Button Hover.png"
dest_files=[ "res://.import/Patron Button Hover.png-8fc60b776206b9abfa94306023859853.stex" ]
source_file="res://Assets/Graphics/Become a patron_Hover.png"
dest_files=[ "res://.import/Become a patron_Hover.png-8a75baaaa2b3ce60a939e5c77977d33b.stex" ]
[params]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.4 KiB

View file

@ -2,8 +2,8 @@
[ext_resource path="res://Scripts/Dialogs/SplashDialog.gd" type="Script" id=1]
[ext_resource path="res://Assets/Graphics/Pixelorama Logo.png" type="Texture" id=2]
[ext_resource path="res://Assets/Graphics/Patron Button.png" type="Texture" id=3]
[ext_resource path="res://Assets/Graphics/Patron Button Hover.png" type="Texture" id=4]
[ext_resource path="res://Assets/Graphics/Become a patron.png" type="Texture" id=3]
[ext_resource path="res://Assets/Graphics/Become a patron_Hover.png" type="Texture" id=4]
[ext_resource path="res://Assets/Graphics/Splash Art.png" type="Texture" id=5]
[ext_resource path="res://Assets/Fonts/Roboto-Bold.tres" type="DynamicFont" id=6]
[ext_resource path="res://Assets/Fonts/Roboto-Small.tres" type="DynamicFont" id=7]
@ -114,18 +114,18 @@ size_flags_vertical = 3
[node name="VBoxContainer" type="VBoxContainer" parent="Contents/PatronsArtNews/PatronsContainer/PatronsScroll"]
margin_right = 142.0
margin_bottom = 80.0
margin_bottom = 84.0
size_flags_horizontal = 3
[node name="CenterContainer" type="CenterContainer" parent="Contents/PatronsArtNews/PatronsContainer/PatronsScroll/VBoxContainer"]
margin_right = 142.0
margin_bottom = 80.0
margin_bottom = 84.0
size_flags_horizontal = 3
[node name="PatronButton" type="TextureButton" parent="Contents/PatronsArtNews/PatronsContainer/PatronsScroll/VBoxContainer/CenterContainer"]
margin_left = 31.0
margin_right = 111.0
margin_bottom = 80.0
margin_left = 29.0
margin_right = 113.0
margin_bottom = 84.0
mouse_default_cursor_shape = 2
texture_normal = ExtResource( 3 )
texture_hover = ExtResource( 4 )
@ -166,16 +166,17 @@ rect_min_size = Vector2( 0, 260 )
[node name="Label2" type="Label" parent="Contents/PatronsArtNews/ChangelogContainer/ChangelogScroll"]
margin_right = 142.0
margin_bottom = 592.0
margin_bottom = 796.0
size_flags_horizontal = 3
size_flags_vertical = 3
text = "Added
- Palettes. You can choose default ones or make your own!
- Multiple theme support to better match your style.
- Image sub-menu with new features (Outlines, Color invert, desaturation) for more editing power.
- Added a layer opacity slider, that lets you change the alpha values of layers.
- Image menu with new features (Outlines, Color invert, desaturation) for more editing power.
- Added a new splash screen window dialog that appears when Pixelorama loads. Patrons with the rank of Visionaries and above can participate in splash screen artwork contests for every version!
- Added a better circle, filled circle and random brushes!
- Pixelorama goes worldwide with even more translations!
- Added a layer opacity slider, that lets you change the alpha values of layers.
- Importing and exporting matrix spritesheets is now possible.
- Straight lines now have constrained angles if you press Ctrl. With a step of 15 angles."
autowrap = true

View file

@ -352,7 +352,7 @@ func help_menu_id_pressed(id : int) -> void:
1: # Issue Tracker
OS.shell_open("https://github.com/Orama-Interactive/Pixelorama/issues")
2: # Changelog
OS.shell_open("https://github.com/Orama-Interactive/Pixelorama/blob/master/Changelog.md")
OS.shell_open("https://github.com/Orama-Interactive/Pixelorama/blob/1b57c4ee22e959ad3b1e1648aff3885a5f22b2b8/Changelog.md")
3: # About Pixelorama
$AboutDialog.popup_centered()
Global.can_draw = false