It's Cow Game! Version 2.04!
25
Objects/Faire/FerrisWheel/BeeBucket.gd
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
extends "res://Objects/Faire/FerrisWheel/Bucket.gd"
|
||||
|
||||
var popped_up = false
|
||||
|
||||
func _ready():
|
||||
MessageManager.messageSent.connect(messageSpoken)
|
||||
|
||||
func messageSpoken(message:String):
|
||||
if !popped_up and get_parent().get_parent().boardedBucket == self:
|
||||
message = message.to_lower().strip_edges()
|
||||
if message.contains("yippee!") or message.contains("yippee") or message.contains("yipee") or message.contains("yippe") or message.contains("jippee!") or message.contains("jippee") or message.contains("jipee") or message.contains("jippe"):
|
||||
jonald_popup()
|
||||
popped_up = true
|
||||
|
||||
func jonald_popup():
|
||||
get_parent().get_parent().droppedOff.connect(hide_jonald)
|
||||
get_tree().get_root().get_node("MainGame/PuzzleCompleteAudio").play()
|
||||
$Jonald.visible = true
|
||||
|
||||
func hide_jonald():
|
||||
get_parent().get_parent().jonaldDroppedOff.emit()
|
||||
$Jonald.visible = false
|
||||
|
||||
func _process(delta):
|
||||
super._process(delta)
|
||||
BIN
Objects/Faire/FerrisWheel/BeeBucket.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
34
Objects/Faire/FerrisWheel/BeeBucket.png.import
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bhkdg6f3h6jd"
|
||||
path="res://.godot/imported/BeeBucket.png-27e7c831843725a7d36821e2e28fec2c.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Objects/Faire/FerrisWheel/BeeBucket.png"
|
||||
dest_files=["res://.godot/imported/BeeBucket.png-27e7c831843725a7d36821e2e28fec2c.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
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/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
|
||||
4
Objects/Faire/FerrisWheel/Bucket.gd
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
extends Sprite2D
|
||||
|
||||
func _process(delta):
|
||||
rotation = get_parent().rotation * -1
|
||||
BIN
Objects/Faire/FerrisWheel/Bucket.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
34
Objects/Faire/FerrisWheel/Bucket.png.import
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bop05t8uct35c"
|
||||
path="res://.godot/imported/Bucket.png-826a5e0b7b7ee01c66d9fd1c85475e26.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Objects/Faire/FerrisWheel/Bucket.png"
|
||||
dest_files=["res://.godot/imported/Bucket.png-826a5e0b7b7ee01c66d9fd1c85475e26.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
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/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
|
||||
73
Objects/Faire/FerrisWheel/FerrisWheel.gd
Normal file
|
|
@ -0,0 +1,73 @@
|
|||
extends Node2D
|
||||
|
||||
signal droppedOff
|
||||
signal jonaldDroppedOff
|
||||
|
||||
var status = "waiting"
|
||||
var fullSpin = false
|
||||
var boardedBucket = null
|
||||
|
||||
var spinSpeed = 0.3
|
||||
|
||||
var cameraLimitTop
|
||||
|
||||
var ticketItem = load("res://Items/Paper/FaireTicket.gd")
|
||||
|
||||
func _process(delta):
|
||||
$Supports.rotation += spinSpeed*delta
|
||||
|
||||
if status == "boarding":
|
||||
var result = check_for_bucket()
|
||||
if result != null:
|
||||
status = "riding"
|
||||
boardedBucket = result
|
||||
|
||||
if status == "riding":
|
||||
GameVariables.player.global_position = boardedBucket.global_position
|
||||
|
||||
var relativePos = boardedBucket.global_position - $Supports.global_position
|
||||
|
||||
if relativePos.y < -100:
|
||||
fullSpin = true
|
||||
|
||||
if fullSpin and relativePos.y > 0 and relativePos.x < 10:
|
||||
status = "waiting"
|
||||
LevelManager.get_skill("appreciating").experience_event("Ferris Wheel", "rode", 200)
|
||||
GameVariables.player.global_position += Vector2(0, 180)
|
||||
GameVariables.player.change_state("Idle")
|
||||
GameVariables.camera.limit_top = cameraLimitTop
|
||||
|
||||
droppedOff.emit()
|
||||
|
||||
func ride():
|
||||
if InventoryManager.spend_item(ticketItem.new()):
|
||||
status = "boarding"
|
||||
fullSpin = false
|
||||
|
||||
cameraLimitTop = GameVariables.camera.limit_top
|
||||
GameVariables.camera.limit_top = -10000
|
||||
else:
|
||||
MessageManager.addMessage("You need one faire ticket to ride the ferris wheel.", null, "System", Color.MIDNIGHT_BLUE,
|
||||
true, false)
|
||||
GameVariables.player.change_state("Idle")
|
||||
|
||||
func check_for_bucket():
|
||||
var lowest = get_lowest_bucket()
|
||||
var relativePos = lowest.global_position - $Supports.global_position
|
||||
if relativePos.x < -40 or relativePos.x > 40:
|
||||
return null
|
||||
else:
|
||||
return lowest
|
||||
|
||||
func get_lowest_bucket():
|
||||
var lowest = null
|
||||
var lowestY = 1000
|
||||
|
||||
var buckets = $Supports.get_children()
|
||||
for bucket in buckets:
|
||||
var relativePos = bucket.global_position - $Supports.global_position
|
||||
if relativePos.y > lowestY or lowest == null:
|
||||
lowestY = relativePos.y
|
||||
lowest = bucket
|
||||
|
||||
return lowest
|
||||
162
Objects/Faire/FerrisWheel/FerrisWheel.tscn
Normal file
|
|
@ -0,0 +1,162 @@
|
|||
[gd_scene load_steps=25 format=3 uid="uid://b1iuxtghkrcec"]
|
||||
|
||||
[ext_resource type="PackedScene" uid="uid://cujx1a8vwxsj8" path="res://Objects/world_object.tscn" id="1_3oqn4"]
|
||||
[ext_resource type="Texture2D" uid="uid://bgl8xlgp6c2vf" path="res://Objects/Faire/FerrisWheel/FerrisWheelSupports.png" id="2_540gt"]
|
||||
[ext_resource type="Script" path="res://Objects/Faire/FerrisWheel/FerrisWheel.gd" id="2_yyb4g"]
|
||||
[ext_resource type="Texture2D" uid="uid://bubp02dmeytlt" path="res://Objects/Faire/FerrisWheel/FerrisWheelLegs.png" id="3_aem4f"]
|
||||
[ext_resource type="Texture2D" uid="uid://bop05t8uct35c" path="res://Objects/Faire/FerrisWheel/Bucket.png" id="4_d7cxu"]
|
||||
[ext_resource type="Texture2D" uid="uid://fr52f5vchrdv" path="res://Objects/Faire/FerrisWheel/FerrisWheelCenter.png" id="5_5tknc"]
|
||||
[ext_resource type="Script" path="res://Objects/Faire/FerrisWheel/Bucket.gd" id="5_h63k2"]
|
||||
[ext_resource type="Texture2D" uid="uid://ctsjtwxtjlc0g" path="res://Objects/Faire/FerrisWheel/TransBucket.png" id="5_q3it8"]
|
||||
[ext_resource type="Texture2D" uid="uid://b8wl6rl23dn61" path="res://Objects/Faire/FerrisWheel/RainbowBucket.png" id="6_n0lfy"]
|
||||
[ext_resource type="Texture2D" uid="uid://dpjdimo68vqpl" path="res://Objects/Faire/FerrisWheel/JonaldBucket.png" id="7_f5h5n"]
|
||||
[ext_resource type="Texture2D" uid="uid://b5sdyxmg0vlnb" path="res://Objects/Faire/FerrisWheel/PretzelBucket.png" id="10_xmwky"]
|
||||
[ext_resource type="Texture2D" uid="uid://bl8jh4t2ldusa" path="res://Objects/Faire/FerrisWheel/PumpkinBucket.png" id="11_x7kvv"]
|
||||
[ext_resource type="Texture2D" uid="uid://dpjocfr3eed3q" path="res://Objects/Faire/FerrisWheel/LesbianBucket.png" id="12_aqdd6"]
|
||||
[ext_resource type="Texture2D" uid="uid://bhkdg6f3h6jd" path="res://Objects/Faire/FerrisWheel/BeeBucket.png" id="13_x81ae"]
|
||||
[ext_resource type="Script" path="res://Objects/Faire/FerrisWheel/BeeBucket.gd" id="14_ud4u4"]
|
||||
[ext_resource type="PackedScene" uid="uid://bqibe7ha6r5ls" path="res://Interactions/Interactable/interactable.tscn" id="15_0fbaq"]
|
||||
[ext_resource type="Texture2D" uid="uid://nevhel5mtr64" path="res://NPCs/Jonald/Jonald.png" id="15_e1fpb"]
|
||||
[ext_resource type="PackedScene" uid="uid://0adfy6rcgp1q" path="res://Interactions/Rideable/Rideable.tscn" id="16_j2de1"]
|
||||
[ext_resource type="Texture2D" uid="uid://mio4e4u8os8k" path="res://Objects/Faire/FerrisWheel/boardingMat.png" id="17_8bc2b"]
|
||||
[ext_resource type="Texture2D" uid="uid://c10hifo474aex" path="res://Objects/Faire/FerrisWheel/costSign.png" id="18_ddgpw"]
|
||||
|
||||
[sub_resource type="SpriteFrames" id="SpriteFrames_pvifl"]
|
||||
animations = [{
|
||||
"frames": [{
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("3_aem4f")
|
||||
}],
|
||||
"loop": true,
|
||||
"name": &"default",
|
||||
"speed": 5.0
|
||||
}]
|
||||
|
||||
[sub_resource type="SpriteFrames" id="SpriteFrames_lls5w"]
|
||||
animations = [{
|
||||
"frames": [{
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("2_540gt")
|
||||
}],
|
||||
"loop": true,
|
||||
"name": &"default",
|
||||
"speed": 5.0
|
||||
}]
|
||||
|
||||
[sub_resource type="SpriteFrames" id="SpriteFrames_goo0o"]
|
||||
animations = [{
|
||||
"frames": [{
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("5_5tknc")
|
||||
}],
|
||||
"loop": true,
|
||||
"name": &"default",
|
||||
"speed": 5.0
|
||||
}]
|
||||
|
||||
[sub_resource type="CircleShape2D" id="CircleShape2D_w2od7"]
|
||||
radius = 73.7564
|
||||
|
||||
[node name="FerrisWheel" instance=ExtResource("1_3oqn4")]
|
||||
script = ExtResource("2_yyb4g")
|
||||
|
||||
[node name="AnimatedSprite2D" parent="." index="0"]
|
||||
z_index = -1
|
||||
position = Vector2(-1, -457)
|
||||
sprite_frames = SubResource("SpriteFrames_pvifl")
|
||||
|
||||
[node name="Supports" type="AnimatedSprite2D" parent="." index="1"]
|
||||
z_index = -1
|
||||
position = Vector2(-1, -455)
|
||||
sprite_frames = SubResource("SpriteFrames_lls5w")
|
||||
|
||||
[node name="TransBucket" type="Sprite2D" parent="Supports" index="0"]
|
||||
z_as_relative = false
|
||||
position = Vector2(-381, -1)
|
||||
texture = ExtResource("5_q3it8")
|
||||
script = ExtResource("5_h63k2")
|
||||
|
||||
[node name="RainbowBucket" type="Sprite2D" parent="Supports" index="1"]
|
||||
z_as_relative = false
|
||||
position = Vector2(-290, -260)
|
||||
texture = ExtResource("6_n0lfy")
|
||||
script = ExtResource("5_h63k2")
|
||||
|
||||
[node name="Bucket" type="Sprite2D" parent="Supports" index="2"]
|
||||
z_as_relative = false
|
||||
position = Vector2(0, 376)
|
||||
texture = ExtResource("4_d7cxu")
|
||||
script = ExtResource("5_h63k2")
|
||||
|
||||
[node name="JonaldBucket" type="Sprite2D" parent="Supports" index="3"]
|
||||
z_as_relative = false
|
||||
position = Vector2(-282, 253)
|
||||
texture = ExtResource("7_f5h5n")
|
||||
script = ExtResource("5_h63k2")
|
||||
|
||||
[node name="PretzelBucket" type="Sprite2D" parent="Supports" index="4"]
|
||||
z_as_relative = false
|
||||
position = Vector2(2, -378)
|
||||
texture = ExtResource("10_xmwky")
|
||||
script = ExtResource("5_h63k2")
|
||||
|
||||
[node name="PumpkinBucket" type="Sprite2D" parent="Supports" index="5"]
|
||||
z_as_relative = false
|
||||
position = Vector2(305.5, 257.5)
|
||||
texture = ExtResource("11_x7kvv")
|
||||
script = ExtResource("5_h63k2")
|
||||
|
||||
[node name="LesbianBucket" type="Sprite2D" parent="Supports" index="6"]
|
||||
z_as_relative = false
|
||||
position = Vector2(283.5, -255.5)
|
||||
texture = ExtResource("12_aqdd6")
|
||||
script = ExtResource("5_h63k2")
|
||||
|
||||
[node name="BeeBucket" type="Sprite2D" parent="Supports" index="7"]
|
||||
z_as_relative = false
|
||||
position = Vector2(399.5, -0.5)
|
||||
texture = ExtResource("13_x81ae")
|
||||
script = ExtResource("14_ud4u4")
|
||||
|
||||
[node name="Jonald" type="Sprite2D" parent="Supports/BeeBucket" index="0"]
|
||||
visible = false
|
||||
show_behind_parent = true
|
||||
position = Vector2(-17.5, -47.5)
|
||||
rotation = -0.50118
|
||||
texture = ExtResource("15_e1fpb")
|
||||
flip_h = true
|
||||
|
||||
[node name="Center" type="AnimatedSprite2D" parent="." index="2"]
|
||||
position = Vector2(-1, -455)
|
||||
sprite_frames = SubResource("SpriteFrames_goo0o")
|
||||
|
||||
[node name="CollisionPolygon2D" parent="StaticBody2D" index="0"]
|
||||
polygon = PackedVector2Array(230, -213, 416, -213, 320, 5, 203.204, 3.66522, 145, 3, 141, 61, 88, 60, 87, 1, -94, 4, -322, 1, -398, -218, -243, -218)
|
||||
|
||||
[node name="Interactable" parent="." index="4" instance=ExtResource("15_0fbaq")]
|
||||
|
||||
[node name="Panel" parent="Interactable" index="1"]
|
||||
offset_left = -58.0
|
||||
offset_top = -116.0
|
||||
offset_right = 63.0
|
||||
offset_bottom = 76.0
|
||||
|
||||
[node name="Rideable" parent="." index="5" instance=ExtResource("16_j2de1")]
|
||||
|
||||
[node name="CollisionShape2D" parent="Rideable/InteractionArea" index="0"]
|
||||
position = Vector2(2, -76)
|
||||
shape = SubResource("CircleShape2D_w2od7")
|
||||
|
||||
[node name="BoardingMat" type="Sprite2D" parent="." index="6"]
|
||||
z_index = -1
|
||||
position = Vector2(2, 49)
|
||||
texture = ExtResource("17_8bc2b")
|
||||
|
||||
[node name="CostSign" type="Sprite2D" parent="." index="7"]
|
||||
z_index = -1
|
||||
position = Vector2(119, 27)
|
||||
texture = ExtResource("18_ddgpw")
|
||||
|
||||
[editable path="Interactable"]
|
||||
[editable path="Interactable/ActionMenu"]
|
||||
[editable path="Rideable"]
|
||||
BIN
Objects/Faire/FerrisWheel/FerrisWheelCenter.png
Normal file
|
After Width: | Height: | Size: 4.7 KiB |
34
Objects/Faire/FerrisWheel/FerrisWheelCenter.png.import
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://fr52f5vchrdv"
|
||||
path="res://.godot/imported/FerrisWheelCenter.png-b46d10f63e14862d4127246ce45a8363.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Objects/Faire/FerrisWheel/FerrisWheelCenter.png"
|
||||
dest_files=["res://.godot/imported/FerrisWheelCenter.png-b46d10f63e14862d4127246ce45a8363.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
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/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
Objects/Faire/FerrisWheel/FerrisWheelLegs.png
Normal file
|
After Width: | Height: | Size: 7.4 KiB |
34
Objects/Faire/FerrisWheel/FerrisWheelLegs.png.import
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bubp02dmeytlt"
|
||||
path="res://.godot/imported/FerrisWheelLegs.png-31cd30db32fc13e382ca712e83c205d8.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Objects/Faire/FerrisWheel/FerrisWheelLegs.png"
|
||||
dest_files=["res://.godot/imported/FerrisWheelLegs.png-31cd30db32fc13e382ca712e83c205d8.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
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/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
Objects/Faire/FerrisWheel/FerrisWheelSupports.png
Normal file
|
After Width: | Height: | Size: 15 KiB |
34
Objects/Faire/FerrisWheel/FerrisWheelSupports.png.import
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bgl8xlgp6c2vf"
|
||||
path="res://.godot/imported/FerrisWheelSupports.png-ee9e4521997524a20c4af8707a828955.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Objects/Faire/FerrisWheel/FerrisWheelSupports.png"
|
||||
dest_files=["res://.godot/imported/FerrisWheelSupports.png-ee9e4521997524a20c4af8707a828955.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
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/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
Objects/Faire/FerrisWheel/Horizon.aseprite
Normal file
BIN
Objects/Faire/FerrisWheel/Horizon.png
Normal file
|
After Width: | Height: | Size: 32 KiB |
34
Objects/Faire/FerrisWheel/Horizon.png.import
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bltlvad5kdk1y"
|
||||
path="res://.godot/imported/Horizon.png-22fe02b74882489d7b77aed1d9629c7b.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Objects/Faire/FerrisWheel/Horizon.png"
|
||||
dest_files=["res://.godot/imported/Horizon.png-22fe02b74882489d7b77aed1d9629c7b.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
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/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
Objects/Faire/FerrisWheel/JonaldBucket.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
34
Objects/Faire/FerrisWheel/JonaldBucket.png.import
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dpjdimo68vqpl"
|
||||
path="res://.godot/imported/JonaldBucket.png-fffcb16fa7b1f656673355b2f3a5aba9.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Objects/Faire/FerrisWheel/JonaldBucket.png"
|
||||
dest_files=["res://.godot/imported/JonaldBucket.png-fffcb16fa7b1f656673355b2f3a5aba9.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
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/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
Objects/Faire/FerrisWheel/LesbianBucket.png
Normal file
|
After Width: | Height: | Size: 611 B |
34
Objects/Faire/FerrisWheel/LesbianBucket.png.import
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dpjocfr3eed3q"
|
||||
path="res://.godot/imported/LesbianBucket.png-b6f3944616cc6e891c24c63452f29d34.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Objects/Faire/FerrisWheel/LesbianBucket.png"
|
||||
dest_files=["res://.godot/imported/LesbianBucket.png-b6f3944616cc6e891c24c63452f29d34.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
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/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
Objects/Faire/FerrisWheel/PretzelBucket.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
34
Objects/Faire/FerrisWheel/PretzelBucket.png.import
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://b5sdyxmg0vlnb"
|
||||
path="res://.godot/imported/PretzelBucket.png-27f48f7234c9a1baa0adf3e82586d9ca.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Objects/Faire/FerrisWheel/PretzelBucket.png"
|
||||
dest_files=["res://.godot/imported/PretzelBucket.png-27f48f7234c9a1baa0adf3e82586d9ca.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
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/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
Objects/Faire/FerrisWheel/PumpkinBucket.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
34
Objects/Faire/FerrisWheel/PumpkinBucket.png.import
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bl8jh4t2ldusa"
|
||||
path="res://.godot/imported/PumpkinBucket.png-a8923c5d0e8575eeb5423fbb28178669.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Objects/Faire/FerrisWheel/PumpkinBucket.png"
|
||||
dest_files=["res://.godot/imported/PumpkinBucket.png-a8923c5d0e8575eeb5423fbb28178669.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
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/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
Objects/Faire/FerrisWheel/RainbowBucket.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
34
Objects/Faire/FerrisWheel/RainbowBucket.png.import
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://b8wl6rl23dn61"
|
||||
path="res://.godot/imported/RainbowBucket.png-e1b71efd1b83b2a2df572bf6cba5b3d5.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Objects/Faire/FerrisWheel/RainbowBucket.png"
|
||||
dest_files=["res://.godot/imported/RainbowBucket.png-e1b71efd1b83b2a2df572bf6cba5b3d5.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
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/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
Objects/Faire/FerrisWheel/TransBucket.png
Normal file
|
After Width: | Height: | Size: 590 B |
34
Objects/Faire/FerrisWheel/TransBucket.png.import
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://ctsjtwxtjlc0g"
|
||||
path="res://.godot/imported/TransBucket.png-b15957272b07e9207ef549b7292ea63c.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Objects/Faire/FerrisWheel/TransBucket.png"
|
||||
dest_files=["res://.godot/imported/TransBucket.png-b15957272b07e9207ef549b7292ea63c.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
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/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
Objects/Faire/FerrisWheel/boardingMat.png
Normal file
|
After Width: | Height: | Size: 289 B |
34
Objects/Faire/FerrisWheel/boardingMat.png.import
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://mio4e4u8os8k"
|
||||
path="res://.godot/imported/boardingMat.png-a2ce9f82b4d4fd61831f525b983ef2b2.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Objects/Faire/FerrisWheel/boardingMat.png"
|
||||
dest_files=["res://.godot/imported/boardingMat.png-a2ce9f82b4d4fd61831f525b983ef2b2.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
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/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
Objects/Faire/FerrisWheel/costSign.png
Normal file
|
After Width: | Height: | Size: 701 B |
34
Objects/Faire/FerrisWheel/costSign.png.import
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://c10hifo474aex"
|
||||
path="res://.godot/imported/costSign.png-991ba24b32c00c8e8e50948dca404ecc.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Objects/Faire/FerrisWheel/costSign.png"
|
||||
dest_files=["res://.godot/imported/costSign.png-991ba24b32c00c8e8e50948dca404ecc.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
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/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
|
||||