Attempt to scale the ad to the window (this commit is actually a stash)

This commit is contained in:
Zoey Kitt 2024-11-16 11:24:33 -06:00
parent 589b0604d4
commit 99f3bb77b9
2 changed files with 23 additions and 3 deletions

View file

@ -0,0 +1,18 @@
extends Node2D
# Called when the node enters the scene tree for the first time.
func _ready() -> void:
# Stretch the funny image to fit in the window
const AD_WINDOW_SIZE = Vector2(1024, 1024)
var sprite := $Sprite2D
# Scale!?
sprite.scale = Vector2(
AD_WINDOW_SIZE.x / sprite.texture.get_width(),
AD_WINDOW_SIZE.y / sprite.texture.get_height()
)
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta: float) -> void:
pass

View file

@ -1,9 +1,11 @@
[gd_scene load_steps=2 format=3 uid="uid://dekqkxftnx3gd"]
[gd_scene load_steps=3 format=3 uid="uid://dekqkxftnx3gd"]
[ext_resource type="Texture2D" uid="uid://bcneuyfyxtxr6" path="res://scenes/microgames/ad/ad_images/wizard.png" id="1_fyqcb"]
[ext_resource type="Script" path="res://scenes/microgames/ad/ad.gd" id="1_4allo"]
[ext_resource type="Texture2D" uid="uid://cpmvcepbd43p4" path="res://scenes/microgames/ad/ad_images/metaverse.png" id="1_qkwqi"]
[node name="Ad" type="Node2D"]
script = ExtResource("1_4allo")
[node name="Sprite2D" type="Sprite2D" parent="."]
texture = ExtResource("1_fyqcb")
texture = ExtResource("1_qkwqi")
centered = false