my mother ate fries

This commit is contained in:
GitCosm0s
2026-01-24 11:47:24 -05:00
parent 0c718f66a7
commit 56b0a9e682
8 changed files with 143 additions and 0 deletions

View File

@@ -11,9 +11,14 @@ config_version=5
[application]
config/name="Tux Typing Plus"
run/main_scene="uid://efrp36k4fauj"
config/features=PackedStringArray("4.5", "Mobile")
config/icon="res://icon.svg"
[display]
window/stretch/mode="viewport"
[rendering]
renderer/rendering_method="mobile"

10
scroll.gdshader Normal file
View File

@@ -0,0 +1,10 @@
shader_type canvas_item;
uniform float speed = .1;
void vertex() {
UV.x += TIME * speed;
UV.y += TIME * speed;
}

1
scroll.gdshader.uid Normal file
View File

@@ -0,0 +1 @@
uid://b4yhwgv8l8djq

Binary file not shown.

After

Width:  |  Height:  |  Size: 688 B

View File

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://db557qcd1godx"
path="res://.godot/imported/scrolbackground.png-d22ec2a9406d73047705cbad57673b5c.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://textures/scrolbackground.png"
dest_files=["res://.godot/imported/scrolbackground.png-d22ec2a9406d73047705cbad57673b5c.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

BIN
textures/tux typing +.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 59 KiB

View File

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dew71sa7dwdnc"
path="res://.godot/imported/tux typing +.png-0bdf3da3623201b4bae4039d98aa853c.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://textures/tux typing +.png"
dest_files=["res://.godot/imported/tux typing +.png-0bdf3da3623201b4bae4039d98aa853c.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

47
title.tscn Normal file
View File

@@ -0,0 +1,47 @@
[gd_scene load_steps=6 format=3 uid="uid://efrp36k4fauj"]
[ext_resource type="Shader" path="res://scroll.gdshader" id="1_kpexm"]
[ext_resource type="Texture2D" uid="uid://db557qcd1godx" path="res://textures/scrolbackground.png" id="2_3xoar"]
[ext_resource type="Texture2D" uid="uid://dew71sa7dwdnc" path="res://textures/tux typing +.png" id="3_mom7w"]
[sub_resource type="ShaderMaterial" id="ShaderMaterial_7lgly"]
shader = ExtResource("1_kpexm")
shader_parameter/speed = 0.1
[sub_resource type="LabelSettings" id="LabelSettings_kpexm"]
font_size = 88
outline_size = 30
outline_color = Color(0.97571033, 0.39818302, 0.64404315, 1)
shadow_size = 32
shadow_color = Color(0.9254902, 0.38039216, 0.6666667, 1)
shadow_offset = Vector2(9.8, 5.495)
[node name="Node2D" type="Node2D"]
[node name="ColorRect" type="ColorRect" parent="."]
offset_right = 1152.0
offset_bottom = 643.0
[node name="background" type="TextureRect" parent="."]
material = SubResource("ShaderMaterial_7lgly")
offset_right = 1147.0
offset_bottom = 645.0
texture = ExtResource("2_3xoar")
stretch_mode = 1
[node name="title" type="TextureRect" parent="."]
offset_left = 113.0
offset_top = -139.0
offset_right = 1127.0935
offset_bottom = 624.0
texture = ExtResource("3_mom7w")
[node name="Label" type="Label" parent="."]
offset_left = 508.0
offset_top = 445.0
offset_right = 813.0
offset_bottom = 566.0
scale = Vector2(0.5, 0.5)
text = "Start!"
label_settings = SubResource("LabelSettings_kpexm")
horizontal_alignment = 1