remove original xr tools demo scenes
goodbye, was useful as a reference.
|
@ -1,64 +0,0 @@
|
|||
@tool
|
||||
extends Node3D
|
||||
|
||||
@export var player_camera : Camera3D
|
||||
|
||||
@export_range(0.005, 1.000, 0.005) var radius : float = 0.025:
|
||||
set(value):
|
||||
radius = value
|
||||
if is_inside_tree():
|
||||
_update_radius()
|
||||
|
||||
func _update_radius():
|
||||
var mesh : QuadMesh = $DisplayMesh.mesh
|
||||
if mesh:
|
||||
# make our mesh fit
|
||||
mesh.size = Vector2(radius*2.0, radius*2.0)
|
||||
|
||||
var material : ShaderMaterial = $DisplayMesh.material_override
|
||||
if material:
|
||||
material.set_shader_parameter("radius", radius)
|
||||
|
||||
@export_range(0.001, 0.500, 0.001) var offset : float = 0.35:
|
||||
set(value):
|
||||
offset = value
|
||||
if is_inside_tree():
|
||||
_update_offset()
|
||||
|
||||
func _update_offset():
|
||||
$ScopeAnchor.position.z = -offset
|
||||
if Engine.is_editor_hint():
|
||||
# In runtime this is positioned in global space through our RemoteTransform3D
|
||||
$SubViewport/Camera3D.global_transform = $ScopeAnchor.global_transform
|
||||
|
||||
var material : ShaderMaterial = $DisplayMesh.material_override
|
||||
if material:
|
||||
material.set_shader_parameter("depth", offset)
|
||||
|
||||
@export_range(1.0, 10.0, 0.1) var fov : float = 10.0:
|
||||
set(value):
|
||||
fov = value
|
||||
if is_inside_tree():
|
||||
_update_fov()
|
||||
|
||||
func _update_fov():
|
||||
$SubViewport/Camera3D.fov = fov
|
||||
|
||||
func _ready():
|
||||
_update_radius()
|
||||
_update_offset()
|
||||
_update_fov()
|
||||
|
||||
func _process(_delta):
|
||||
if !player_camera:
|
||||
return
|
||||
|
||||
# Check if our display is in view of our camera, only update scope if it is...
|
||||
var view_dir = -player_camera.global_transform.basis.z
|
||||
var scope_dir = -global_transform.basis.z
|
||||
var dot = view_dir.dot(scope_dir)
|
||||
|
||||
if dot > 0.9:
|
||||
$SubViewport.render_target_update_mode = SubViewport.UPDATE_ALWAYS
|
||||
else:
|
||||
$SubViewport.render_target_update_mode = SubViewport.UPDATE_DISABLED
|
|
@ -1,32 +0,0 @@
|
|||
shader_type spatial;
|
||||
render_mode unshaded;
|
||||
|
||||
uniform sampler2D scope_texture : source_color;
|
||||
uniform float radius = 0.05;
|
||||
uniform float depth = 0.35;
|
||||
|
||||
varying vec3 v;
|
||||
|
||||
void vertex() {
|
||||
v = (MODELVIEW_MATRIX * vec4(VERTEX, 1.0)).xyz - (MODELVIEW_MATRIX * vec4(0.0, 0.0, 0.0, 1.0)).xyz;
|
||||
}
|
||||
|
||||
void fragment() {
|
||||
if (length(v) < radius) {
|
||||
|
||||
vec3 view_dir = normalize(normalize(-VERTEX + EYE_OFFSET) * mat3(TANGENT, -BINORMAL, NORMAL));
|
||||
vec2 adj_uv = UV - view_dir.xy * (depth * 10.0);
|
||||
|
||||
adj_uv -= vec2(0.5);
|
||||
adj_uv *= 0.5;
|
||||
|
||||
if (length(adj_uv) < 0.5) {
|
||||
vec4 c = texture(scope_texture, adj_uv + vec2(0.5));
|
||||
ALBEDO = c.xyz;
|
||||
} else {
|
||||
ALBEDO = vec3(0.0);
|
||||
}
|
||||
} else {
|
||||
discard;
|
||||
}
|
||||
}
|
|
@ -1,37 +0,0 @@
|
|||
[gd_scene load_steps=6 format=3 uid="uid://e8cx22o0aoxa"]
|
||||
|
||||
[ext_resource type="Script" path="res://assets/3dmodelscc0/models/scenes/scope_display.gd" id="1_ggrlg"]
|
||||
[ext_resource type="Shader" path="res://assets/3dmodelscc0/models/scenes/scope_display.gdshader" id="2_il1pd"]
|
||||
|
||||
[sub_resource type="ViewportTexture" id="ViewportTexture_fim7a"]
|
||||
viewport_path = NodePath("SubViewport")
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_guleq"]
|
||||
resource_local_to_scene = true
|
||||
render_priority = 0
|
||||
shader = ExtResource("2_il1pd")
|
||||
shader_parameter/radius = 0.025
|
||||
shader_parameter/depth = 0.35
|
||||
shader_parameter/scope_texture = SubResource("ViewportTexture_fim7a")
|
||||
|
||||
[sub_resource type="QuadMesh" id="QuadMesh_p2a2g"]
|
||||
size = Vector2(0.02, 0.02)
|
||||
|
||||
[node name="ScopeDisplay" type="Node3D"]
|
||||
script = ExtResource("1_ggrlg")
|
||||
|
||||
[node name="ScopeAnchor" type="RemoteTransform3D" parent="."]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, -0.35)
|
||||
remote_path = NodePath("../SubViewport/Camera3D")
|
||||
|
||||
[node name="SubViewport" type="SubViewport" parent="."]
|
||||
handle_input_locally = false
|
||||
render_target_update_mode = 4
|
||||
|
||||
[node name="Camera3D" type="Camera3D" parent="SubViewport"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, -0.35)
|
||||
fov = 10.0
|
||||
|
||||
[node name="DisplayMesh" type="MeshInstance3D" parent="."]
|
||||
material_override = SubResource("ShaderMaterial_guleq")
|
||||
mesh = SubResource("QuadMesh_p2a2g")
|
|
@ -1,7 +0,0 @@
|
|||
@tool
|
||||
extends XRToolsPickable
|
||||
|
||||
|
||||
# Called when the node enters the scene tree for the first time.
|
||||
func _ready():
|
||||
super._ready()
|
|
@ -1,19 +0,0 @@
|
|||
Sniper Rifle
|
||||
|
||||
Author: 3dmodelscc0
|
||||
Source: https://www.3dmodelscc0.com/model/sniper-rifle
|
||||
Release Date: N/A
|
||||
|
||||
------------------------------
|
||||
|
||||
Additional Note:
|
||||
textures edited by DigitalN8m4r3 aka Miodrag Sejic
|
||||
|
||||
------------------------------
|
||||
|
||||
License: (Creative Commons Zero, CC0)
|
||||
http://creativecommons.org/publicdomain/zero/1.0/
|
||||
|
||||
This content is free to use in personal, educational and commercial projects.
|
||||
|
||||
------------------------------
|
|
@ -1,96 +0,0 @@
|
|||
class_name XRFirearmTrigger
|
||||
extends Node
|
||||
|
||||
|
||||
@export var mesh_trigger : MeshInstance3D
|
||||
|
||||
@export var value : float
|
||||
|
||||
@export var handle_grabpoints : Array[XRToolsGrabPoint]
|
||||
|
||||
@onready var _parent : XRToolsPickable = get_parent()
|
||||
|
||||
# Current controller holding this object
|
||||
var _current_controller : XRController3D
|
||||
|
||||
var triggered : bool = false
|
||||
|
||||
|
||||
# Add support for is_xr_class on XRTools classes
|
||||
func is_xr_class(name : String) -> bool:
|
||||
return name == "XRFirearmTrigger"
|
||||
|
||||
|
||||
# Called when the node enters the scene tree for the first time.
|
||||
func _ready() -> void:
|
||||
# Listen for when this object is picked up or dropped
|
||||
_parent.grabbed.connect(_on_grabbed)
|
||||
_parent.released.connect(_on_released)
|
||||
# disable handle grabpoints on ready
|
||||
for handle_grabpoint in handle_grabpoints:
|
||||
handle_grabpoint.enabled = false
|
||||
|
||||
func _physics_process(_delta):
|
||||
if is_instance_valid(_parent):
|
||||
# toggle handle grabpoints if parent got grabbed/released
|
||||
if _parent.get_picked_up_by():
|
||||
for handle_grabpoint in handle_grabpoints:
|
||||
handle_grabpoint.enabled = true
|
||||
else:
|
||||
for handle_grabpoint in handle_grabpoints:
|
||||
handle_grabpoint.enabled = false
|
||||
|
||||
# Called when this object is grabbed
|
||||
func _on_grabbed(_pickable, _by) -> void:
|
||||
_update_controller_signals()
|
||||
for handle_grabpoint in handle_grabpoints:
|
||||
handle_grabpoint.enabled = true
|
||||
|
||||
# Called when this object is released
|
||||
func _on_released(_pickable, _by) -> void:
|
||||
# disables handle grabpoints to ensure no missgrab if pickable is not being held
|
||||
for handle_grabpoint in handle_grabpoints:
|
||||
handle_grabpoint.enabled = false
|
||||
_update_controller_signals()
|
||||
|
||||
|
||||
# Update the controller signals
|
||||
func _update_controller_signals() -> void:
|
||||
# Find the primary controller holding the firearm
|
||||
var controller := _parent.get_picked_up_by_controller()
|
||||
var grab_point := _parent.get_active_grab_point() as XRToolsGrabPointHand
|
||||
if not grab_point or grab_point.handle != "Grip":
|
||||
controller = null
|
||||
|
||||
# If the bound controller is no-longer correct then unbind
|
||||
if _current_controller and _current_controller != controller:
|
||||
_current_controller.button_pressed.disconnect(_on_controller_trigger_pressed)
|
||||
_current_controller.button_released.disconnect(_on_controller_trigger_released)
|
||||
if triggered:
|
||||
mesh_trigger.rotate(Vector3(1, 0, 0), value)
|
||||
triggered = false
|
||||
_current_controller = null
|
||||
|
||||
# If we need to bind to a new controller then bind
|
||||
if controller and not _current_controller:
|
||||
_current_controller = controller
|
||||
_current_controller.button_pressed.connect(_on_controller_trigger_pressed)
|
||||
_current_controller.button_released.connect(_on_controller_trigger_released)
|
||||
|
||||
# Called when a controller button is released
|
||||
func _on_controller_trigger_released(trigger_button : String):
|
||||
# Skip if not pose-toggle button
|
||||
if trigger_button != "trigger_click":
|
||||
return
|
||||
|
||||
mesh_trigger.rotate(Vector3(1, 0, 0), value)
|
||||
triggered = false
|
||||
|
||||
|
||||
# Called when a controller button is pressed
|
||||
func _on_controller_trigger_pressed(trigger_button : String):
|
||||
# Skip if not pose-toggle button
|
||||
if trigger_button != "trigger_click":
|
||||
return
|
||||
triggered = true
|
||||
mesh_trigger.rotate(Vector3(1, 0, 0), -value)
|
|
@ -1,36 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="scene"
|
||||
importer_version=1
|
||||
type="PackedScene"
|
||||
uid="uid://jg1pijfn8ea3"
|
||||
path="res://.godot/imported/sniper_rifle.glb-1b461170280302dd9b583b216083939a.scn"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/3dmodelscc0/models/sniper_rifle/sniper_rifle.glb"
|
||||
dest_files=["res://.godot/imported/sniper_rifle.glb-1b461170280302dd9b583b216083939a.scn"]
|
||||
|
||||
[params]
|
||||
|
||||
nodes/root_type=""
|
||||
nodes/root_name=""
|
||||
nodes/apply_root_scale=true
|
||||
nodes/root_scale=1.0
|
||||
nodes/import_as_skeleton_bones=false
|
||||
meshes/ensure_tangents=true
|
||||
meshes/generate_lods=true
|
||||
meshes/create_shadow_meshes=true
|
||||
meshes/light_baking=1
|
||||
meshes/lightmap_texel_size=0.2
|
||||
meshes/force_disable_compression=false
|
||||
skins/use_named_skins=true
|
||||
animation/import=true
|
||||
animation/fps=30
|
||||
animation/trimming=false
|
||||
animation/remove_immutable_tracks=true
|
||||
animation/import_rest_as_RESET=false
|
||||
import_script/path=""
|
||||
_subresources={}
|
||||
gltf/naming_version=0
|
||||
gltf/embedded_image_handling=1
|
Before Width: | Height: | Size: 291 KiB |
|
@ -1,36 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cq357jtocrwn3"
|
||||
path.s3tc="res://.godot/imported/sniper_rifle_baseColor.png-e5cdc30749d5b018519ab29ac981c989.s3tc.ctex"
|
||||
path.etc2="res://.godot/imported/sniper_rifle_baseColor.png-e5cdc30749d5b018519ab29ac981c989.etc2.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc", "etc2_astc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/3dmodelscc0/models/sniper_rifle/sniper_rifle_baseColor.png"
|
||||
dest_files=["res://.godot/imported/sniper_rifle_baseColor.png-e5cdc30749d5b018519ab29ac981c989.s3tc.ctex", "res://.godot/imported/sniper_rifle_baseColor.png-e5cdc30749d5b018519ab29ac981c989.etc2.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=true
|
||||
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=0
|
Before Width: | Height: | Size: 632 KiB |
|
@ -1,36 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://qelh7ps8tun"
|
||||
path.s3tc="res://.godot/imported/sniper_rifle_normal.png-3908ec03070f4c7473f9de70ecb64953.s3tc.ctex"
|
||||
path.etc2="res://.godot/imported/sniper_rifle_normal.png-3908ec03070f4c7473f9de70ecb64953.etc2.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc", "etc2_astc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/3dmodelscc0/models/sniper_rifle/sniper_rifle_normal.png"
|
||||
dest_files=["res://.godot/imported/sniper_rifle_normal.png-3908ec03070f4c7473f9de70ecb64953.s3tc.ctex", "res://.godot/imported/sniper_rifle_normal.png-3908ec03070f4c7473f9de70ecb64953.etc2.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=1
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=true
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=1
|
||||
roughness/src_normal="res://assets/3dmodelscc0/models/sniper_rifle/sniper_rifle_normal.png"
|
||||
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=0
|
Before Width: | Height: | Size: 374 KiB |
|
@ -1,36 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://flu3yu2bcean"
|
||||
path.s3tc="res://.godot/imported/sniper_rifle_occlusionRoughnessMetallic.png-09d7401ff25ccfce6d23baef3196344f.s3tc.ctex"
|
||||
path.etc2="res://.godot/imported/sniper_rifle_occlusionRoughnessMetallic.png-09d7401ff25ccfce6d23baef3196344f.etc2.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc", "etc2_astc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/3dmodelscc0/models/sniper_rifle/sniper_rifle_occlusionRoughnessMetallic.png"
|
||||
dest_files=["res://.godot/imported/sniper_rifle_occlusionRoughnessMetallic.png-09d7401ff25ccfce6d23baef3196344f.s3tc.ctex", "res://.godot/imported/sniper_rifle_occlusionRoughnessMetallic.png-09d7401ff25ccfce6d23baef3196344f.etc2.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=true
|
||||
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=0
|
|
@ -1,7 +0,0 @@
|
|||
License: Public Domain CC0
|
||||
|
||||
Source: https://freepd.com/
|
||||
|
||||
Author: Bryan Teoh
|
||||
|
||||
Title: Soundtrack From the Starcourt Mall
|
|
@ -1,19 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
uid="uid://dd1dmsoxo58ao"
|
||||
path="res://.godot/imported/Soundtrack From the Starcourt Mall.mp3-a1f9850f9de7eba1f42e733b62a6b065.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/BryanTeoh/Soundtrack From the Starcourt Mall.mp3"
|
||||
dest_files=["res://.godot/imported/Soundtrack From the Starcourt Mall.mp3-a1f9850f9de7eba1f42e733b62a6b065.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=true
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
Before Width: | Height: | Size: 520 KiB |
|
@ -1,36 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dqoe1c5yn5dnv"
|
||||
path.bptc="res://.godot/imported/SkyOnlyHDRI023_2K-TONEMAPPED.jpg-bcb5464e5ed42ee2463b71652f907f38.bptc.ctex"
|
||||
path.astc="res://.godot/imported/SkyOnlyHDRI023_2K-TONEMAPPED.jpg-bcb5464e5ed42ee2463b71652f907f38.astc.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc", "etc2_astc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/ambientcg.com/SkyOnlyHDRI023_2K-TONEMAPPED.jpg"
|
||||
dest_files=["res://.godot/imported/SkyOnlyHDRI023_2K-TONEMAPPED.jpg-bcb5464e5ed42ee2463b71652f907f38.bptc.ctex", "res://.godot/imported/SkyOnlyHDRI023_2K-TONEMAPPED.jpg-bcb5464e5ed42ee2463b71652f907f38.astc.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
compress/high_quality=true
|
||||
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=0
|
|
@ -1,29 +0,0 @@
|
|||
|
||||
Arcade Hoops 3D Model
|
||||
Basketball 3D Model
|
||||
PingPong Ball 3D Model
|
||||
Ping Pong Racket 3D Model
|
||||
Table 3D Model
|
||||
Token 3D Model
|
||||
|
||||
|
||||
Created/distributed by DigitalN8m4r3 aka Miodrag Sejic
|
||||
https://www.digitalnightmare.eu/en/privacy.html
|
||||
Release Date: Mai 2023
|
||||
|
||||
------------------------------
|
||||
|
||||
License: (Creative Commons Zero, CC0)
|
||||
http://creativecommons.org/publicdomain/zero/1.0/
|
||||
|
||||
This content is free to use in personal, educational and commercial projects.
|
||||
|
||||
------------------------------
|
||||
|
||||
Follow on Twitter for updates:
|
||||
https://twitter.com/DigitalN8m4r3
|
||||
|
||||
|
||||
Note:
|
||||
token 3D Model ressembles the Godot Engine Logo
|
||||
Arcade Hoops Texture ressembles the Godot Engine Logo
|
|
@ -1,36 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="scene"
|
||||
importer_version=1
|
||||
type="PackedScene"
|
||||
uid="uid://xowi152o3is1"
|
||||
path="res://.godot/imported/ArcadeHoops.glb-27b185322e5d604e9e991e82d2948bb6.scn"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/digitaln8m4r3/models/arcadehoops/ArcadeHoops.glb"
|
||||
dest_files=["res://.godot/imported/ArcadeHoops.glb-27b185322e5d604e9e991e82d2948bb6.scn"]
|
||||
|
||||
[params]
|
||||
|
||||
nodes/root_type="Node3D"
|
||||
nodes/root_name="Scene Root"
|
||||
nodes/apply_root_scale=true
|
||||
nodes/root_scale=1.0
|
||||
nodes/import_as_skeleton_bones=false
|
||||
meshes/ensure_tangents=true
|
||||
meshes/generate_lods=true
|
||||
meshes/create_shadow_meshes=true
|
||||
meshes/light_baking=1
|
||||
meshes/lightmap_texel_size=0.2
|
||||
meshes/force_disable_compression=false
|
||||
skins/use_named_skins=true
|
||||
animation/import=true
|
||||
animation/fps=30
|
||||
animation/trimming=false
|
||||
animation/remove_immutable_tracks=true
|
||||
animation/import_rest_as_RESET=false
|
||||
import_script/path=""
|
||||
_subresources={}
|
||||
gltf/naming_version=0
|
||||
gltf/embedded_image_handling=1
|
|
@ -1,36 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="scene"
|
||||
importer_version=1
|
||||
type="PackedScene"
|
||||
uid="uid://c3rwol8inp0wi"
|
||||
path="res://.godot/imported/basketball.glb-0cb5e65c98016ffbbc7088c81d48faec.scn"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/digitaln8m4r3/models/basketball/basketball.glb"
|
||||
dest_files=["res://.godot/imported/basketball.glb-0cb5e65c98016ffbbc7088c81d48faec.scn"]
|
||||
|
||||
[params]
|
||||
|
||||
nodes/root_type="Node3D"
|
||||
nodes/root_name="Scene Root"
|
||||
nodes/apply_root_scale=true
|
||||
nodes/root_scale=1.0
|
||||
nodes/import_as_skeleton_bones=false
|
||||
meshes/ensure_tangents=true
|
||||
meshes/generate_lods=true
|
||||
meshes/create_shadow_meshes=true
|
||||
meshes/light_baking=1
|
||||
meshes/lightmap_texel_size=0.2
|
||||
meshes/force_disable_compression=false
|
||||
skins/use_named_skins=true
|
||||
animation/import=true
|
||||
animation/fps=30
|
||||
animation/trimming=false
|
||||
animation/remove_immutable_tracks=true
|
||||
animation/import_rest_as_RESET=false
|
||||
import_script/path=""
|
||||
_subresources={}
|
||||
gltf/naming_version=0
|
||||
gltf/embedded_image_handling=1
|
|
@ -1,36 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="scene"
|
||||
importer_version=1
|
||||
type="PackedScene"
|
||||
uid="uid://d2tqk4wgfwcl8"
|
||||
path="res://.godot/imported/ping_pong_ball.glb-fab1b1c2b3473a2927bf6ed63e3436cb.scn"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/digitaln8m4r3/models/pingpong/ping_pong_ball.glb"
|
||||
dest_files=["res://.godot/imported/ping_pong_ball.glb-fab1b1c2b3473a2927bf6ed63e3436cb.scn"]
|
||||
|
||||
[params]
|
||||
|
||||
nodes/root_type="Node3D"
|
||||
nodes/root_name="Scene Root"
|
||||
nodes/apply_root_scale=true
|
||||
nodes/root_scale=1.0
|
||||
nodes/import_as_skeleton_bones=false
|
||||
meshes/ensure_tangents=true
|
||||
meshes/generate_lods=true
|
||||
meshes/create_shadow_meshes=true
|
||||
meshes/light_baking=1
|
||||
meshes/lightmap_texel_size=0.2
|
||||
meshes/force_disable_compression=false
|
||||
skins/use_named_skins=true
|
||||
animation/import=true
|
||||
animation/fps=30
|
||||
animation/trimming=false
|
||||
animation/remove_immutable_tracks=true
|
||||
animation/import_rest_as_RESET=false
|
||||
import_script/path=""
|
||||
_subresources={}
|
||||
gltf/naming_version=0
|
||||
gltf/embedded_image_handling=1
|
|
@ -1,36 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="scene"
|
||||
importer_version=1
|
||||
type="PackedScene"
|
||||
uid="uid://bl6lg0rqvld7m"
|
||||
path="res://.godot/imported/ping_pong_racket.glb-2d97a9cdf66e053af9ef0f035a608faa.scn"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/digitaln8m4r3/models/pingpong/ping_pong_racket.glb"
|
||||
dest_files=["res://.godot/imported/ping_pong_racket.glb-2d97a9cdf66e053af9ef0f035a608faa.scn"]
|
||||
|
||||
[params]
|
||||
|
||||
nodes/root_type="Node3D"
|
||||
nodes/root_name="Scene Root"
|
||||
nodes/apply_root_scale=true
|
||||
nodes/root_scale=1.0
|
||||
nodes/import_as_skeleton_bones=false
|
||||
meshes/ensure_tangents=true
|
||||
meshes/generate_lods=true
|
||||
meshes/create_shadow_meshes=true
|
||||
meshes/light_baking=1
|
||||
meshes/lightmap_texel_size=0.2
|
||||
meshes/force_disable_compression=false
|
||||
skins/use_named_skins=true
|
||||
animation/import=true
|
||||
animation/fps=30
|
||||
animation/trimming=false
|
||||
animation/remove_immutable_tracks=true
|
||||
animation/import_rest_as_RESET=false
|
||||
import_script/path=""
|
||||
_subresources={}
|
||||
gltf/naming_version=0
|
||||
gltf/embedded_image_handling=1
|
|
@ -1,36 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="scene"
|
||||
importer_version=1
|
||||
type="PackedScene"
|
||||
uid="uid://dtjjw1lo0bs4r"
|
||||
path="res://.godot/imported/table.glb-18663cd1c4d9c85f617c400748e68de5.scn"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/digitaln8m4r3/models/pingpong/table.glb"
|
||||
dest_files=["res://.godot/imported/table.glb-18663cd1c4d9c85f617c400748e68de5.scn"]
|
||||
|
||||
[params]
|
||||
|
||||
nodes/root_type="Node3D"
|
||||
nodes/root_name="Scene Root"
|
||||
nodes/apply_root_scale=true
|
||||
nodes/root_scale=1.0
|
||||
nodes/import_as_skeleton_bones=false
|
||||
meshes/ensure_tangents=true
|
||||
meshes/generate_lods=true
|
||||
meshes/create_shadow_meshes=true
|
||||
meshes/light_baking=1
|
||||
meshes/lightmap_texel_size=0.2
|
||||
meshes/force_disable_compression=false
|
||||
skins/use_named_skins=true
|
||||
animation/import=true
|
||||
animation/fps=30
|
||||
animation/trimming=false
|
||||
animation/remove_immutable_tracks=true
|
||||
animation/import_rest_as_RESET=false
|
||||
import_script/path=""
|
||||
_subresources={}
|
||||
gltf/naming_version=0
|
||||
gltf/embedded_image_handling=1
|
|
@ -1,36 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="scene"
|
||||
importer_version=1
|
||||
type="PackedScene"
|
||||
uid="uid://hlmes83xhgs5"
|
||||
path="res://.godot/imported/token.glb-8abee1bbcbb62fdd9fe4b27a7cba140e.scn"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/digitaln8m4r3/models/token/token.glb"
|
||||
dest_files=["res://.godot/imported/token.glb-8abee1bbcbb62fdd9fe4b27a7cba140e.scn"]
|
||||
|
||||
[params]
|
||||
|
||||
nodes/root_type="Node3D"
|
||||
nodes/root_name="Scene Root"
|
||||
nodes/apply_root_scale=true
|
||||
nodes/root_scale=1.0
|
||||
nodes/import_as_skeleton_bones=false
|
||||
meshes/ensure_tangents=true
|
||||
meshes/generate_lods=true
|
||||
meshes/create_shadow_meshes=true
|
||||
meshes/light_baking=1
|
||||
meshes/lightmap_texel_size=0.2
|
||||
meshes/force_disable_compression=false
|
||||
skins/use_named_skins=true
|
||||
animation/import=true
|
||||
animation/fps=30
|
||||
animation/trimming=false
|
||||
animation/remove_immutable_tracks=true
|
||||
animation/import_rest_as_RESET=false
|
||||
import_script/path=""
|
||||
_subresources={}
|
||||
gltf/naming_version=0
|
||||
gltf/embedded_image_handling=1
|
|
@ -1,73 +0,0 @@
|
|||
class_name XRFirearmBolt
|
||||
extends MeshInstance3D
|
||||
|
||||
|
||||
@export var _handle : XRToolsInteractableHandle
|
||||
|
||||
@export var _slide : XRFirearmSlide
|
||||
|
||||
@export var value : Vector3
|
||||
|
||||
# Current controller holding this object
|
||||
var _current_controller : XRController3D
|
||||
|
||||
|
||||
# Add support for is_xr_class on XRTools classes
|
||||
func is_xr_class(name : String) -> bool:
|
||||
return name == "XRFirearmBolt"
|
||||
|
||||
|
||||
func _ready() -> void:
|
||||
# Listen for when this object is picked up or dropped
|
||||
_handle.grabbed.connect(_on_grabbed)
|
||||
_handle.released.connect(_on_released)
|
||||
|
||||
# Called when this object is grabbed
|
||||
func _on_grabbed(_pickable, _by) -> void:
|
||||
_update_controller_signals()
|
||||
|
||||
|
||||
# Called when this object is released
|
||||
func _on_released(_pickable, _by) -> void:
|
||||
_update_controller_signals()
|
||||
|
||||
|
||||
# Update the controller signals
|
||||
func _update_controller_signals() -> void:
|
||||
# Find the primary controller holding the firearm
|
||||
var controller := _handle.get_picked_up_by_controller()
|
||||
#var grab_point := _handle.get_active_grab_point() as XRToolsGrabPointHand
|
||||
#if not grab_point or grab_point.handle != "Grip":
|
||||
# controller = null
|
||||
|
||||
# If the bound controller is no-longer correct then unbind
|
||||
if _current_controller and _current_controller != controller:
|
||||
if !_slide.slider_position:
|
||||
reset_rotation()
|
||||
_current_controller = null
|
||||
|
||||
# If we need to bind to a new controller then bind
|
||||
if controller and not _current_controller:
|
||||
_current_controller = controller
|
||||
if !_slide.default_position:
|
||||
reset_rotation()
|
||||
rotation_degrees += value
|
||||
|
||||
func _on_controller_trigger_pressed(trigger_button : String):
|
||||
# Skip if not pose-toggle button
|
||||
if trigger_button != "trigger_click":
|
||||
return
|
||||
|
||||
rotation_degrees += value
|
||||
|
||||
|
||||
func _on_controller_trigger_released(trigger_button : String):
|
||||
# Skip if not pose-toggle button
|
||||
if trigger_button != "trigger_click":
|
||||
return
|
||||
|
||||
reset_rotation()
|
||||
|
||||
|
||||
func reset_rotation():
|
||||
rotation_degrees = Vector3(0,0,0)
|
|
@ -1,113 +0,0 @@
|
|||
@tool
|
||||
class_name XRFirearmSlide
|
||||
extends XRToolsInteractableHandleDriven
|
||||
|
||||
|
||||
## XR Firearm Slide script
|
||||
##
|
||||
## The firearm slide is a slider transform node controlled by the
|
||||
## player through [XRToolsInteractableHandle] instances.
|
||||
##
|
||||
## The slider translates itelf along its local Z axis, and so should be
|
||||
## placed as a child of a node to translate and rotate as appropriate.
|
||||
##
|
||||
## The interactable slider is not a [RigidBody3D], and as such will not react
|
||||
## to any collisions.
|
||||
|
||||
|
||||
## Signal for slider moved
|
||||
signal firearm_slider_moved(position)
|
||||
|
||||
|
||||
## Start position for slide, can be positiv and negativ in values
|
||||
@export var slider_start : float = 0.0
|
||||
|
||||
## End position for slide, can be positiv and negativ in values
|
||||
@export var slider_end : float = 1.0
|
||||
|
||||
## Slider position - move to test the position setup
|
||||
@export var slider_position : float = 0.0: set = _set_slider_position
|
||||
|
||||
## Default position
|
||||
@export var default_position : float = 0.0
|
||||
|
||||
## If true, the slider moves to the default position when released
|
||||
@export var default_on_release : bool = false
|
||||
|
||||
|
||||
# Add support for is_xr_class on XRTools classes
|
||||
func is_xr_class(name : String) -> bool:
|
||||
return name == "XRFirearmSlide" or super(name)
|
||||
|
||||
|
||||
# Called when the node enters the scene tree for the first time.
|
||||
func _ready() -> void:
|
||||
# In Godot 4 we must now manually call our super class ready function
|
||||
super()
|
||||
|
||||
# Set the initial position to match the initial slider position value
|
||||
transform = Transform3D(
|
||||
Basis.IDENTITY,
|
||||
Vector3(0.0, 0.0, slider_position)
|
||||
)
|
||||
|
||||
# Connect signals
|
||||
if released.connect(_on_slider_released):
|
||||
push_error("Cannot connect slider released signal")
|
||||
|
||||
|
||||
# Called every frame when one or more handles are held by the player
|
||||
func _process(_delta: float) -> void:
|
||||
# Get the total handle offsets
|
||||
var offset_sum := Vector3.ZERO
|
||||
for item in grabbed_handles:
|
||||
var handle := item as XRToolsInteractableHandle
|
||||
offset_sum += handle.global_transform.origin - handle.handle_origin.global_transform.origin
|
||||
|
||||
# Rotate the offset sum vector from global into local coordinate space
|
||||
offset_sum = offset_sum * global_transform.basis
|
||||
|
||||
# Get the average displacement in the Z axis
|
||||
var offset := offset_sum.z / grabbed_handles.size()
|
||||
|
||||
# Move the slider by the requested offset
|
||||
move_slider(slider_position + offset)
|
||||
|
||||
|
||||
# Move the slider to the specified position
|
||||
func move_slider(new_position: float) -> void:
|
||||
# Do the slider move
|
||||
new_position = _do_move_slider(new_position)
|
||||
if new_position == slider_position:
|
||||
return
|
||||
|
||||
# Update the current position
|
||||
slider_position = new_position
|
||||
|
||||
# Emit the moved signal
|
||||
emit_signal("firearm_slider_moved", new_position)
|
||||
|
||||
|
||||
# Handle release of slider
|
||||
func _on_slider_released(_interactable: XRFirearmSlide):
|
||||
if default_on_release:
|
||||
move_slider(default_position)
|
||||
|
||||
|
||||
# Called when the slider position is set externally
|
||||
func _set_slider_position(new_position: float) -> void:
|
||||
new_position = _do_move_slider(new_position)
|
||||
slider_position = new_position
|
||||
|
||||
|
||||
# Do the slider move
|
||||
func _do_move_slider(new_position: float) -> float:
|
||||
# Apply slider limits
|
||||
new_position = clamp(new_position, slider_start, slider_end)
|
||||
|
||||
# Move if necessary
|
||||
if new_position != slider_position:
|
||||
transform.origin.z = new_position
|
||||
|
||||
# Return the updated position
|
||||
return new_position
|
Before Width: | Height: | Size: 755 KiB |
|
@ -1,36 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://ba3u3jr42ft05"
|
||||
path.s3tc="res://.godot/imported/allstar_baseColor.png-1b28928ab3d43887a0965cf5aa904758.s3tc.ctex"
|
||||
path.etc2="res://.godot/imported/allstar_baseColor.png-1b28928ab3d43887a0965cf5aa904758.etc2.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc", "etc2_astc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/digitaln8m4r3/textures/allstar_baseColor.png"
|
||||
dest_files=["res://.godot/imported/allstar_baseColor.png-1b28928ab3d43887a0965cf5aa904758.s3tc.ctex", "res://.godot/imported/allstar_baseColor.png-1b28928ab3d43887a0965cf5aa904758.etc2.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=true
|
||||
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=0
|
Before Width: | Height: | Size: 4.1 MiB |
|
@ -1,36 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bsn08ait63h8q"
|
||||
path.s3tc="res://.godot/imported/arcade_hoops_baseColor.png-34d39f3397fbec1df232d80d58c3382b.s3tc.ctex"
|
||||
path.etc2="res://.godot/imported/arcade_hoops_baseColor.png-34d39f3397fbec1df232d80d58c3382b.etc2.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc", "etc2_astc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/digitaln8m4r3/textures/arcade_hoops_baseColor.png"
|
||||
dest_files=["res://.godot/imported/arcade_hoops_baseColor.png-34d39f3397fbec1df232d80d58c3382b.s3tc.ctex", "res://.godot/imported/arcade_hoops_baseColor.png-34d39f3397fbec1df232d80d58c3382b.etc2.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
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=0
|
Before Width: | Height: | Size: 1.5 MiB |
|
@ -1,36 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dj5e06undxfat"
|
||||
path.s3tc="res://.godot/imported/arcade_hoops_normal.png-5b3831e670dad7f113b8834e3efea4b1.s3tc.ctex"
|
||||
path.etc2="res://.godot/imported/arcade_hoops_normal.png-5b3831e670dad7f113b8834e3efea4b1.etc2.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc", "etc2_astc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/digitaln8m4r3/textures/arcade_hoops_normal.png"
|
||||
dest_files=["res://.godot/imported/arcade_hoops_normal.png-5b3831e670dad7f113b8834e3efea4b1.s3tc.ctex", "res://.godot/imported/arcade_hoops_normal.png-5b3831e670dad7f113b8834e3efea4b1.etc2.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=1
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=1
|
||||
roughness/src_normal="res://assets/digitaln8m4r3/textures/arcade_hoops_normal.png"
|
||||
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=0
|
Before Width: | Height: | Size: 3.7 MiB |
|
@ -1,36 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://ble8jcmcxulaf"
|
||||
path.s3tc="res://.godot/imported/arcade_hoops_occlusionRoughnessMetallic.png-d49b89805670d859184f1575de39ed04.s3tc.ctex"
|
||||
path.etc2="res://.godot/imported/arcade_hoops_occlusionRoughnessMetallic.png-d49b89805670d859184f1575de39ed04.etc2.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc", "etc2_astc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/digitaln8m4r3/textures/arcade_hoops_occlusionRoughnessMetallic.png"
|
||||
dest_files=["res://.godot/imported/arcade_hoops_occlusionRoughnessMetallic.png-d49b89805670d859184f1575de39ed04.s3tc.ctex", "res://.godot/imported/arcade_hoops_occlusionRoughnessMetallic.png-d49b89805670d859184f1575de39ed04.etc2.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
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=0
|
Before Width: | Height: | Size: 841 KiB |
|
@ -1,36 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://b8wj6pe030wco"
|
||||
path.s3tc="res://.godot/imported/basketball_normal.png-056183223563b999e1238103b9abb562.s3tc.ctex"
|
||||
path.etc2="res://.godot/imported/basketball_normal.png-056183223563b999e1238103b9abb562.etc2.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc", "etc2_astc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/digitaln8m4r3/textures/basketball_normal.png"
|
||||
dest_files=["res://.godot/imported/basketball_normal.png-056183223563b999e1238103b9abb562.s3tc.ctex", "res://.godot/imported/basketball_normal.png-056183223563b999e1238103b9abb562.etc2.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=1
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=1
|
||||
roughness/src_normal="res://assets/digitaln8m4r3/textures/basketball_normal.png"
|
||||
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=0
|
Before Width: | Height: | Size: 524 KiB |
|
@ -1,36 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://jm2nfvbfqfx6"
|
||||
path.s3tc="res://.godot/imported/basketball_occlusionRoughnessMetallic.png-453900bbe0cd6158954782a1cd6ba9b0.s3tc.ctex"
|
||||
path.etc2="res://.godot/imported/basketball_occlusionRoughnessMetallic.png-453900bbe0cd6158954782a1cd6ba9b0.etc2.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc", "etc2_astc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/digitaln8m4r3/textures/basketball_occlusionRoughnessMetallic.png"
|
||||
dest_files=["res://.godot/imported/basketball_occlusionRoughnessMetallic.png-453900bbe0cd6158954782a1cd6ba9b0.s3tc.ctex", "res://.godot/imported/basketball_occlusionRoughnessMetallic.png-453900bbe0cd6158954782a1cd6ba9b0.etc2.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
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=0
|
Before Width: | Height: | Size: 972 KiB |
|
@ -1,36 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cq8j1qkvkhvr5"
|
||||
path.s3tc="res://.godot/imported/classic_baseColor.png-3c53e88aaf8c78f67dc611fa15d57cb7.s3tc.ctex"
|
||||
path.etc2="res://.godot/imported/classic_baseColor.png-3c53e88aaf8c78f67dc611fa15d57cb7.etc2.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc", "etc2_astc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/digitaln8m4r3/textures/classic_baseColor.png"
|
||||
dest_files=["res://.godot/imported/classic_baseColor.png-3c53e88aaf8c78f67dc611fa15d57cb7.s3tc.ctex", "res://.godot/imported/classic_baseColor.png-3c53e88aaf8c78f67dc611fa15d57cb7.etc2.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
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=0
|
Before Width: | Height: | Size: 747 KiB |
|
@ -1,36 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://5avfyvlm0w1d"
|
||||
path.s3tc="res://.godot/imported/godot_baseColor.png-ede339a561ff463ee7d10d015c7a6b73.s3tc.ctex"
|
||||
path.etc2="res://.godot/imported/godot_baseColor.png-ede339a561ff463ee7d10d015c7a6b73.etc2.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc", "etc2_astc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/digitaln8m4r3/textures/godot_baseColor.png"
|
||||
dest_files=["res://.godot/imported/godot_baseColor.png-ede339a561ff463ee7d10d015c7a6b73.s3tc.ctex", "res://.godot/imported/godot_baseColor.png-ede339a561ff463ee7d10d015c7a6b73.etc2.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
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=0
|
Before Width: | Height: | Size: 629 KiB |
|
@ -1,36 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://r18u2tdbngqp"
|
||||
path.s3tc="res://.godot/imported/godot_token_baseColor.png-7822270aef4569fed7e5cd9120803fe6.s3tc.ctex"
|
||||
path.etc2="res://.godot/imported/godot_token_baseColor.png-7822270aef4569fed7e5cd9120803fe6.etc2.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc", "etc2_astc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/digitaln8m4r3/textures/godot_token_baseColor.png"
|
||||
dest_files=["res://.godot/imported/godot_token_baseColor.png-7822270aef4569fed7e5cd9120803fe6.s3tc.ctex", "res://.godot/imported/godot_token_baseColor.png-7822270aef4569fed7e5cd9120803fe6.etc2.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=true
|
||||
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=0
|
Before Width: | Height: | Size: 538 KiB |
|
@ -1,36 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://d078iaf38v008"
|
||||
path.s3tc="res://.godot/imported/godot_token_normal.png-47440e65b6c5eb3943a3a0278fb34e84.s3tc.ctex"
|
||||
path.etc2="res://.godot/imported/godot_token_normal.png-47440e65b6c5eb3943a3a0278fb34e84.etc2.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc", "etc2_astc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/digitaln8m4r3/textures/godot_token_normal.png"
|
||||
dest_files=["res://.godot/imported/godot_token_normal.png-47440e65b6c5eb3943a3a0278fb34e84.s3tc.ctex", "res://.godot/imported/godot_token_normal.png-47440e65b6c5eb3943a3a0278fb34e84.etc2.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=1
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=true
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=1
|
||||
roughness/src_normal="res://assets/digitaln8m4r3/textures/godot_token_normal.png"
|
||||
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=0
|
Before Width: | Height: | Size: 965 KiB |
|
@ -1,36 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://beq104o76un37"
|
||||
path.s3tc="res://.godot/imported/godot_token_occlusionRoughnessMetallic.png-989cbd0bc4b0efda7df746c6f18702d0.s3tc.ctex"
|
||||
path.etc2="res://.godot/imported/godot_token_occlusionRoughnessMetallic.png-989cbd0bc4b0efda7df746c6f18702d0.etc2.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc", "etc2_astc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/digitaln8m4r3/textures/godot_token_occlusionRoughnessMetallic.png"
|
||||
dest_files=["res://.godot/imported/godot_token_occlusionRoughnessMetallic.png-989cbd0bc4b0efda7df746c6f18702d0.s3tc.ctex", "res://.godot/imported/godot_token_occlusionRoughnessMetallic.png-989cbd0bc4b0efda7df746c6f18702d0.etc2.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=true
|
||||
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=0
|
Before Width: | Height: | Size: 2.3 MiB |
|
@ -1,36 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cppboiios7ahd"
|
||||
path.s3tc="res://.godot/imported/pingpong_baseColor.png-bb4a137314fb78850e070e6804dc5539.s3tc.ctex"
|
||||
path.etc2="res://.godot/imported/pingpong_baseColor.png-bb4a137314fb78850e070e6804dc5539.etc2.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc", "etc2_astc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/digitaln8m4r3/textures/pingpong_baseColor.png"
|
||||
dest_files=["res://.godot/imported/pingpong_baseColor.png-bb4a137314fb78850e070e6804dc5539.s3tc.ctex", "res://.godot/imported/pingpong_baseColor.png-bb4a137314fb78850e070e6804dc5539.etc2.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=true
|
||||
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=0
|
Before Width: | Height: | Size: 2 MiB |
|
@ -1,36 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bgpa18h7u1hlf"
|
||||
path.s3tc="res://.godot/imported/pingpong_normal.png-4b35ad89d44059c8eb8db09a186534b7.s3tc.ctex"
|
||||
path.etc2="res://.godot/imported/pingpong_normal.png-4b35ad89d44059c8eb8db09a186534b7.etc2.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc", "etc2_astc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/digitaln8m4r3/textures/pingpong_normal.png"
|
||||
dest_files=["res://.godot/imported/pingpong_normal.png-4b35ad89d44059c8eb8db09a186534b7.s3tc.ctex", "res://.godot/imported/pingpong_normal.png-4b35ad89d44059c8eb8db09a186534b7.etc2.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=1
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=true
|
||||
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=0
|
Before Width: | Height: | Size: 2 MiB |
|
@ -1,36 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dr00uyxiefhd4"
|
||||
path.s3tc="res://.godot/imported/pingpong_occlusionRoughnessMetallic.png-99dda86e838acb2ee5b38f2d1a9577e2.s3tc.ctex"
|
||||
path.etc2="res://.godot/imported/pingpong_occlusionRoughnessMetallic.png-99dda86e838acb2ee5b38f2d1a9577e2.etc2.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc", "etc2_astc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/digitaln8m4r3/textures/pingpong_occlusionRoughnessMetallic.png"
|
||||
dest_files=["res://.godot/imported/pingpong_occlusionRoughnessMetallic.png-99dda86e838acb2ee5b38f2d1a9577e2.s3tc.ctex", "res://.godot/imported/pingpong_occlusionRoughnessMetallic.png-99dda86e838acb2ee5b38f2d1a9577e2.etc2.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=true
|
||||
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=0
|
Before Width: | Height: | Size: 1 MiB |
|
@ -1,36 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://besb7yalxebvk"
|
||||
path.s3tc="res://.godot/imported/retro_baseColor.png-e122368555103bb8d0db59cb3b3cfcb3.s3tc.ctex"
|
||||
path.etc2="res://.godot/imported/retro_baseColor.png-e122368555103bb8d0db59cb3b3cfcb3.etc2.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc", "etc2_astc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/digitaln8m4r3/textures/retro_baseColor.png"
|
||||
dest_files=["res://.godot/imported/retro_baseColor.png-e122368555103bb8d0db59cb3b3cfcb3.s3tc.ctex", "res://.godot/imported/retro_baseColor.png-e122368555103bb8d0db59cb3b3cfcb3.etc2.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
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=0
|
|
@ -1,19 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="oggvorbisstr"
|
||||
type="AudioStreamOggVorbis"
|
||||
uid="uid://1pvhce6jale0"
|
||||
path="res://.godot/imported/default_footstep.ogg-7e783a6a4a857808e4d6ab521d97dec5.oggvorbisstr"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/footsteps/default_footstep.ogg"
|
||||
dest_files=["res://.godot/imported/default_footstep.ogg-7e783a6a4a857808e4d6ab521d97dec5.oggvorbisstr"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
|
@ -1,24 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="wav"
|
||||
type="AudioStreamWAV"
|
||||
uid="uid://cddgfn5xkknr4"
|
||||
path="res://.godot/imported/default_footstep.wav-dd12f9efdea3173225647961887739e0.sample"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/footsteps/default_footstep.wav"
|
||||
dest_files=["res://.godot/imported/default_footstep.wav-dd12f9efdea3173225647961887739e0.sample"]
|
||||
|
||||
[params]
|
||||
|
||||
force/8_bit=false
|
||||
force/mono=false
|
||||
force/max_rate=false
|
||||
force/max_rate_hz=44100
|
||||
edit/trim=false
|
||||
edit/normalize=false
|
||||
edit/loop_mode=0
|
||||
edit/loop_begin=0
|
||||
edit/loop_end=-1
|
||||
compress/mode=0
|
|
@ -1,19 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="oggvorbisstr"
|
||||
type="AudioStreamOggVorbis"
|
||||
uid="uid://di2mvj64s1ykq"
|
||||
path="res://.godot/imported/grass_footstep.ogg-11247a302dcdd9e3719af4c0193776fa.oggvorbisstr"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/footsteps/grass_footstep.ogg"
|
||||
dest_files=["res://.godot/imported/grass_footstep.ogg-11247a302dcdd9e3719af4c0193776fa.oggvorbisstr"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
|
@ -1,24 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="wav"
|
||||
type="AudioStreamWAV"
|
||||
uid="uid://dl3u65cveimdq"
|
||||
path="res://.godot/imported/grass_footstep.wav-b9825665a4e1ac3aee5f9998be56cb59.sample"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/footsteps/grass_footstep.wav"
|
||||
dest_files=["res://.godot/imported/grass_footstep.wav-b9825665a4e1ac3aee5f9998be56cb59.sample"]
|
||||
|
||||
[params]
|
||||
|
||||
force/8_bit=false
|
||||
force/mono=false
|
||||
force/max_rate=false
|
||||
force/max_rate_hz=44100
|
||||
edit/trim=false
|
||||
edit/normalize=false
|
||||
edit/loop_mode=0
|
||||
edit/loop_begin=0
|
||||
edit/loop_end=-1
|
||||
compress/mode=0
|
|
@ -1,19 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="oggvorbisstr"
|
||||
type="AudioStreamOggVorbis"
|
||||
uid="uid://cr8gitem2utdd"
|
||||
path="res://.godot/imported/mud_footstep.ogg-7037238fe005102e9ddd7e51a9099967.oggvorbisstr"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/footsteps/mud_footstep.ogg"
|
||||
dest_files=["res://.godot/imported/mud_footstep.ogg-7037238fe005102e9ddd7e51a9099967.oggvorbisstr"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
|
@ -1,24 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="wav"
|
||||
type="AudioStreamWAV"
|
||||
uid="uid://bu3r7384vd488"
|
||||
path="res://.godot/imported/mud_footstep.wav-efdbb54cdc8800b21fa00335ae339ccc.sample"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/footsteps/mud_footstep.wav"
|
||||
dest_files=["res://.godot/imported/mud_footstep.wav-efdbb54cdc8800b21fa00335ae339ccc.sample"]
|
||||
|
||||
[params]
|
||||
|
||||
force/8_bit=false
|
||||
force/mono=false
|
||||
force/max_rate=false
|
||||
force/max_rate_hz=44100
|
||||
edit/trim=false
|
||||
edit/normalize=false
|
||||
edit/loop_mode=0
|
||||
edit/loop_begin=0
|
||||
edit/loop_end=-1
|
||||
compress/mode=0
|
|
@ -1,19 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="oggvorbisstr"
|
||||
type="AudioStreamOggVorbis"
|
||||
uid="uid://cvxjtvoif1jyy"
|
||||
path="res://.godot/imported/puddle_footstep.ogg-5273758367d1d69b3ade5bc1c8e04ac5.oggvorbisstr"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/footsteps/puddle_footstep.ogg"
|
||||
dest_files=["res://.godot/imported/puddle_footstep.ogg-5273758367d1d69b3ade5bc1c8e04ac5.oggvorbisstr"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
|
@ -1,24 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="wav"
|
||||
type="AudioStreamWAV"
|
||||
uid="uid://dkladw5jiqfnb"
|
||||
path="res://.godot/imported/puddle_footstep.wav-9cd3f487c53d96b75250ff56889df57f.sample"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/footsteps/puddle_footstep.wav"
|
||||
dest_files=["res://.godot/imported/puddle_footstep.wav-9cd3f487c53d96b75250ff56889df57f.sample"]
|
||||
|
||||
[params]
|
||||
|
||||
force/8_bit=false
|
||||
force/mono=false
|
||||
force/max_rate=false
|
||||
force/max_rate_hz=44100
|
||||
edit/trim=false
|
||||
edit/normalize=false
|
||||
edit/loop_mode=0
|
||||
edit/loop_begin=0
|
||||
edit/loop_end=-1
|
||||
compress/mode=0
|
|
@ -1,19 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="oggvorbisstr"
|
||||
type="AudioStreamOggVorbis"
|
||||
uid="uid://c3ao6lhc7um4b"
|
||||
path="res://.godot/imported/snow_footstep.ogg-7e1bcc3ef0b8143bef0df51cc7cd7511.oggvorbisstr"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/footsteps/snow_footstep.ogg"
|
||||
dest_files=["res://.godot/imported/snow_footstep.ogg-7e1bcc3ef0b8143bef0df51cc7cd7511.oggvorbisstr"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
|
@ -1,24 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="wav"
|
||||
type="AudioStreamWAV"
|
||||
uid="uid://c7670m64eawbp"
|
||||
path="res://.godot/imported/snow_footstep.wav-29f78401fa6c1bbd519099873252fb56.sample"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/footsteps/snow_footstep.wav"
|
||||
dest_files=["res://.godot/imported/snow_footstep.wav-29f78401fa6c1bbd519099873252fb56.sample"]
|
||||
|
||||
[params]
|
||||
|
||||
force/8_bit=false
|
||||
force/mono=false
|
||||
force/max_rate=false
|
||||
force/max_rate_hz=44100
|
||||
edit/trim=false
|
||||
edit/normalize=false
|
||||
edit/loop_mode=0
|
||||
edit/loop_begin=0
|
||||
edit/loop_end=-1
|
||||
compress/mode=0
|
|
@ -1,24 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="wav"
|
||||
type="AudioStreamWAV"
|
||||
uid="uid://bpwmmom4spy3o"
|
||||
path="res://.godot/imported/218318__splicesound__referee-whistle-blow-gymnasium.wav-e14427cce3076b4e03e560a48123a826.sample"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/freesound/218318__splicesound__referee-whistle-blow-gymnasium.wav"
|
||||
dest_files=["res://.godot/imported/218318__splicesound__referee-whistle-blow-gymnasium.wav-e14427cce3076b4e03e560a48123a826.sample"]
|
||||
|
||||
[params]
|
||||
|
||||
force/8_bit=false
|
||||
force/mono=false
|
||||
force/max_rate=false
|
||||
force/max_rate_hz=44100
|
||||
edit/trim=false
|
||||
edit/normalize=false
|
||||
edit/loop_mode=0
|
||||
edit/loop_begin=0
|
||||
edit/loop_end=-1
|
||||
compress/mode=0
|
|
@ -1,24 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="wav"
|
||||
type="AudioStreamWAV"
|
||||
uid="uid://dydu4jv0dhqv5"
|
||||
path="res://.godot/imported/269718__michorvath__ping-pong-ball-hit.wav-0b46b18cbea7c50046ec329ef260fbb7.sample"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/freesound/269718__michorvath__ping-pong-ball-hit.wav"
|
||||
dest_files=["res://.godot/imported/269718__michorvath__ping-pong-ball-hit.wav-0b46b18cbea7c50046ec329ef260fbb7.sample"]
|
||||
|
||||
[params]
|
||||
|
||||
force/8_bit=false
|
||||
force/mono=false
|
||||
force/max_rate=false
|
||||
force/max_rate_hz=44100
|
||||
edit/trim=false
|
||||
edit/normalize=false
|
||||
edit/loop_mode=0
|
||||
edit/loop_begin=0
|
||||
edit/loop_end=-1
|
||||
compress/mode=0
|
|
@ -1,24 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="wav"
|
||||
type="AudioStreamWAV"
|
||||
uid="uid://b236jxsstul7s"
|
||||
path="res://.godot/imported/319785__zmobie__basketball-3.wav-57d381f74027fb15b4cd6d0bc5f5cd58.sample"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/freesound/319785__zmobie__basketball-3.wav"
|
||||
dest_files=["res://.godot/imported/319785__zmobie__basketball-3.wav-57d381f74027fb15b4cd6d0bc5f5cd58.sample"]
|
||||
|
||||
[params]
|
||||
|
||||
force/8_bit=false
|
||||
force/mono=false
|
||||
force/max_rate=false
|
||||
force/max_rate_hz=44100
|
||||
edit/trim=false
|
||||
edit/normalize=false
|
||||
edit/loop_mode=0
|
||||
edit/loop_begin=0
|
||||
edit/loop_end=-1
|
||||
compress/mode=0
|
|
@ -1,24 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="wav"
|
||||
type="AudioStreamWAV"
|
||||
uid="uid://bu0n47pxg0f0k"
|
||||
path="res://.godot/imported/344548__dster777__button.wav-f7d7f66d8c7da29f72bdd6eb6f1d4dc8.sample"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/freesound/344548__dster777__button.wav"
|
||||
dest_files=["res://.godot/imported/344548__dster777__button.wav-f7d7f66d8c7da29f72bdd6eb6f1d4dc8.sample"]
|
||||
|
||||
[params]
|
||||
|
||||
force/8_bit=false
|
||||
force/mono=false
|
||||
force/max_rate=false
|
||||
force/max_rate_hz=44100
|
||||
edit/trim=false
|
||||
edit/normalize=false
|
||||
edit/loop_mode=0
|
||||
edit/loop_begin=0
|
||||
edit/loop_end=-1
|
||||
compress/mode=0
|
|
@ -1,24 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="wav"
|
||||
type="AudioStreamWAV"
|
||||
uid="uid://d2ti2ar5ck7oe"
|
||||
path="res://.godot/imported/384700_quarter_insert_edited.wav-518ab83d22511b364022f64a13f531c9.sample"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/freesound/384700_quarter_insert_edited.wav"
|
||||
dest_files=["res://.godot/imported/384700_quarter_insert_edited.wav-518ab83d22511b364022f64a13f531c9.sample"]
|
||||
|
||||
[params]
|
||||
|
||||
force/8_bit=false
|
||||
force/mono=false
|
||||
force/max_rate=false
|
||||
force/max_rate_hz=44100
|
||||
edit/trim=false
|
||||
edit/normalize=false
|
||||
edit/loop_mode=0
|
||||
edit/loop_begin=0
|
||||
edit/loop_end=-1
|
||||
compress/mode=0
|
|
@ -1,24 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="wav"
|
||||
type="AudioStreamWAV"
|
||||
uid="uid://dtsb6y8e6l3yg"
|
||||
path="res://.godot/imported/442575__timdun__passball.wav-379a538b17096186e40b34ad3100cceb.sample"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/freesound/442575__timdun__passball.wav"
|
||||
dest_files=["res://.godot/imported/442575__timdun__passball.wav-379a538b17096186e40b34ad3100cceb.sample"]
|
||||
|
||||
[params]
|
||||
|
||||
force/8_bit=false
|
||||
force/mono=false
|
||||
force/max_rate=false
|
||||
force/max_rate_hz=44100
|
||||
edit/trim=false
|
||||
edit/normalize=false
|
||||
edit/loop_mode=0
|
||||
edit/loop_begin=0
|
||||
edit/loop_end=-1
|
||||
compress/mode=0
|