Compare commits

..

2 commits

Author SHA1 Message Date
f2828302d0 Merge branch 'develop' into 'master'
Test release

See merge request MaddoScientisto/cirnogodot!2
2025-04-11 08:38:21 +00:00
3c11d5a4ce Merge branch 'develop' into 'master'
develop

See merge request MaddoScientisto/cirnogodot!1
2025-03-12 13:23:18 +00:00
5075 changed files with 6062 additions and 231680 deletions

View file

@ -1,395 +0,0 @@
# CLAUDE.md - AI Assistant Guidelines for Godot 4 C# Development
## File Creation Guidelines
### Files AI CAN Create/Edit
- **`.cs` files** - All C# script files (preferred for game logic)
- **`.tscn` files** - Scene files with basic/logical structure
- **`.cfg` files** - Configuration files (like .ini format)
### Files AI Should Create WITH CAUTION
- **`.gd` files** - Only for EditorScript tools (preferred over C# for editor extensions)
- **`.tres` files** - Simple resources CAN be created as text:
```
[gd_resource type="Resource" script_class="Recipe" path="res://scripts/Recipe.cs"]
id = "fire_water_steam"
ingredients = ["fire", "water"]
instability_cost = 20.0
```
BUT: Complex resources with node references or nested resources are better created in editor
### Files AI Should RARELY Create
- **`.json` files** - Only for external data exchange or modding support
- Use `.tres` for all game data instead (type-safe, Inspector-editable)
- **`.md` files** - Documentation files, only when specifically requested
### Files AI Should NOT Create
- **`.import` files** - Godot manages these automatically
- **`project.godot`** - Only modify through Project Settings UI
- **`.gdshader` files** - Visual shader editing is more efficient
- **Binary files** - Images, sounds, models, etc.
## Scene File (.tscn) Guidelines
### AI CAN Generate in .tscn
```tscn
# Basic node structure
[node name="Player" type="CharacterBody2D"]
unique_name_in_owner = true
script = ExtResource("1")
# Node hierarchy
[node name="Sprite2D" type="Sprite2D" parent="."]
# Signal connections
[connection signal="pressed" from="Button" to="." method="_on_button_pressed"]
# Simple collision shapes
[sub_resource type="RectangleShape2D" id="1"]
size = Vector2(32, 32)
```
### Human Handles in Editor
- Sprite textures and animations
- Precise collision shape adjustments
- Animation tracks in AnimationPlayer
- Particle system parameters
- Complex UI layouts with exact positioning
- Tilemap painting
- Navigation mesh baking
- Audio bus assignments
## Division of Labor
### AI Handles (Logic & Structure)
- Game logic and systems in C#
- Node hierarchy structure
- Script functionality
- Basic scene composition
- Export variable definitions
- Signal method implementations
- Resource class definitions
### Human Handles (Visual & Feel)
- Sprite assignment and animation
- Collision shape fine-tuning
- Visual effects and particles
- UI precise positioning
- Audio integration
- Testing game feel
- Input mapping
## C# Code Best Practices
### Node References
```csharp
// GOOD - Unique names (set in .tscn with unique_name_in_owner = true)
private Node player;
public override void _Ready()
{
player = GetNode("%Player");
}
// GOOD - Relative paths for direct children
private Sprite2D sprite;
public override void _Ready()
{
sprite = GetNode<Sprite2D>("Sprite2D");
}
// AVOID - Fragile absolute paths
var player = GetNode("/root/Main/World/Player");
```
### Signals
```csharp
// For static connections (nodes in same scene):
// AI provides the method, human connects in editor OR AI adds to .tscn
private void _OnButtonPressed()
{
GD.Print("Button pressed!");
}
// For dynamic connections (runtime created nodes):
// AI writes the connection code
public override void _Ready()
{
if (!enemy.Died.IsConnected(Callable.From(_OnEnemyDied)))
{
enemy.Died.Connect(Callable.From(_OnEnemyDied));
}
}
```
### Export Variables
```csharp
// AI defines them with sensible defaults
[Export] public float MoveSpeed { get; set; } = 300.0f; // Human tweaks in Inspector
[Export] public PackedScene EnemyScene { get; set; } // Human assigns in Inspector
// Group related exports
[ExportGroup("Movement")]
[Export] public float Speed { get; set; } = 100.0f;
[Export] public float Acceleration { get; set; } = 10.0f;
```
### Scene Instantiation
```csharp
// Always check if assigned
[Export] public PackedScene ProjectileScene { get; set; }
private void Shoot()
{
if (ProjectileScene == null)
{
GD.PrintErr("ProjectileScene not assigned in Inspector");
return;
}
var bullet = ProjectileScene.Instantiate();
}
```
## Standard C# Code Structure
```csharp
using Godot;
public partial class Player : CharacterBody2D
{
// Signals
[Signal] public delegate void HealthChangedEventHandler(int newValue);
// Constants
private const float MaxSpeed = 400.0f;
// Export variables
[ExportGroup("Combat")]
[Export] public int Damage { get; set; } = 10;
[Export] public float AttackRate { get; set; } = 1.0f;
// Private variables
private string _currentState = "idle";
private Vector2 _velocity = Vector2.Zero;
// Node references (initialized in _Ready)
private Sprite2D _sprite;
private Control _healthBar;
// Godot callbacks
public override void _Ready()
{
_sprite = GetNode<Sprite2D>("Sprite2D");
_healthBar = GetNode<Control>("%HealthBar"); // Unique name
}
public override void _PhysicsProcess(double delta)
{
// Physics logic
}
// Public methods
public void TakeDamage(int amount)
{
// Implementation
}
// Private methods
private void UpdateHealthBar()
{
// Implementation
}
// Signal callbacks
private void _OnAreaEntered(Area2D area)
{
// Implementation
}
}
```
## Resource Creation
```csharp
// AI provides the Resource class definition
using Godot;
[GlobalClass]
public partial class Recipe : Resource
{
[Export] public string Id { get; set; } = "";
[Export] public string[] Ingredients { get; set; } = Array.Empty<string>();
[Export] public float InstabilityCost { get; set; } = 0.0f;
}
// Human creates instances: Right-click > Create Resource > Recipe
```
## Testing & Debug Helpers
```csharp
// Always include debug capability
[Export] public bool DebugMode { get; set; } = false;
// Debug methods
public override void _Ready()
{
if (DebugMode)
{
GD.Print($"[{Name}] Ready with speed: {MoveSpeed}");
}
}
// Unit test methods (can be called from debugger or test scenes)
public static float TestBrewingTiming()
{
float totalTime = 0.4f * 3 + 0.8f; // 3 ingredients + set time
System.Diagnostics.Debug.Assert(totalTime < 2.5f, "Brewing too slow!");
return totalTime;
}
```
## Common C# Patterns
### Object Pooling Setup
```csharp
// AI provides the structure, human assigns the scene
[Export] public PackedScene PooledScene { get; set; } // Assign in Inspector
private readonly Queue<Node> _pool = new();
private Node GetInstance()
{
if (_pool.Count == 0)
return PooledScene.Instantiate();
return _pool.Dequeue();
}
```
### State Machine
```csharp
public enum State { Idle, Moving, Attacking }
private State _currentState = State.Idle;
private void TransitionTo(State newState)
{
_currentState = newState;
switch (newState)
{
case State.Idle:
_animationPlayer.Play("idle");
break;
case State.Moving:
_animationPlayer.Play("run");
break;
}
}
```
## Instructions for Humans
When AI generates code/scenes, it should include clear TODO comments:
```csharp
// TODO: In Godot Editor:
// 1. Assign EnemyScene in Inspector (drag Enemy.tscn)
// 2. Set up collision shape (Circle, radius ~16)
// 3. Add sprite texture
// 4. Connect hurt_box's area_entered signal
```
## What to Avoid
### DON'T
- Hardcode paths to scenes (use [Export])
- Create complex AnimationPlayer tracks in code
- Generate particle system parameters in code
- Edit .import files
- Assume node paths without proper initialization
- Use old Godot 3 syntax or GDScript patterns in C#
- Create collision polygons via code arrays
- Modify project.godot directly
- Create .gd files for game logic (use C# instead)
- Create documentation files unless specifically requested
- Use esotheric powershell one-liners for file manipulation (use the available tools or ask the user instead)
### DO
- Use [Export] for all scene references
- Use % for unique named nodes with GetNode
- Include debug helpers
- Check for null before using nodes
- Use proper C# naming conventions (PascalCase for public, camelCase for private)
- Provide fallbacks and error messages
- Keep visual things in the editor
- Use C# for all game logic and scripts
## File Organization Example
```
/project
├── /Scripts # All C# scripts organized by category
│ ├── /Resources # Resource class definitions (AI creates these)
│ │ └── Recipe.cs
│ ├── /Player # Player-related scripts
│ │ └── PlayerController.cs
│ ├── /Enemies # Enemy-related scripts
│ │ └── EnemyAI.cs
│ ├── GameManager.cs # Global scripts at root level
│ └── EventBus.cs
├── /Scenes # Mix of AI and human work, organized by category
│ ├── /Player # Player-related scenes
│ │ └── Player.tscn # AI creates structure, human adds visuals
│ ├── /Enemies # Enemy-related scenes
│ │ └── Enemy.tscn
│ └── /UI # UI scenes
│ └── MainMenu.tscn
├── /Resources # .tres resource files organized by category
│ ├── /Recipes # Based on AI's Resource classes
│ │ └── FireWaterSteam.tres
│ └── /Items # Item resources
│ └── Sword.tres
├── /Shaders # Shader files
│ ├── Water.gdshader
│ └── Fire.gdshader
└── /Sprites # Human manages visual assets
├── /Player
└── /Enemies
```
## C# Specific Guidelines
### Naming Conventions
- Classes: PascalCase (`PlayerController`)
- Public properties/methods: PascalCase (`MoveSpeed`, `TakeDamage()`)
- Private fields: _camelCase (`_currentHealth`, `_velocity`)
- Constants: PascalCase (`MaxHealth`)
- Enums: PascalCase (`PlayerState.Moving`)
### Property Usage
```csharp
// Prefer properties over fields for exports
[Export] public float Speed { get; set; } = 100.0f;
// Use private fields for internal state
private float _currentSpeed;
```
### Null Safety
```csharp
// Always check exported scenes/nodes
if (ProjectileScene != null)
{
var projectile = ProjectileScene.Instantiate<Projectile>();
// Use the projectile
}
```
## Project-Specific Notes
For **Your game**:
## Summary
- AI handles: Logic, structure, systems in C#
- Human handles: Visuals, feel, precise adjustments
- .tscn files are human-readable and AI can generate them
- Always use [Export] and Inspector for scene/resource references
- Use C# for all game logic, GDScript only for EditorScript tools
- Include debug modes and clear TODOs
- Test core mechanics with static methods
- Avoid creating documentation unless requested

6
.gitignore vendored
View file

@ -2,8 +2,4 @@
.godot/
.vscode/
build/**
release/**
3D/Maps/autosave/**
*.tmp
*.TMP
.idea/
release/**

Binary file not shown.

View file

@ -1,53 +0,0 @@
[remap]
importer="scene"
importer_version=1
type="PackedScene"
uid="uid://doi28vodqxgu5"
path="res://.godot/imported/Box.blend-1e1b2d136314ae6975c00cb67891c6fe.scn"
[deps]
source_file="res://3D/BlenderModels/Box/Box.blend"
dest_files=["res://.godot/imported/Box.blend-1e1b2d136314ae6975c00cb67891c6fe.scn"]
[params]
nodes/root_type=""
nodes/root_name=""
nodes/apply_root_scale=true
nodes/root_scale=1.0
nodes/import_as_skeleton_bones=false
nodes/use_node_type_suffixes=true
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={}
blender/nodes/visible=0
blender/nodes/active_collection_only=false
blender/nodes/punctual_lights=true
blender/nodes/cameras=true
blender/nodes/custom_properties=true
blender/nodes/modifiers=1
blender/meshes/colors=false
blender/meshes/uvs=true
blender/meshes/normals=true
blender/meshes/export_geometry_nodes_instances=false
blender/meshes/tangents=true
blender/meshes/skins=2
blender/meshes/export_bones_deforming_mesh_only=false
blender/materials/unpack_enabled=true
blender/materials/export_materials=1
blender/animation/limit_playback=true
blender/animation/always_sample=true
blender/animation/group_tracks=true

Binary file not shown.

View file

@ -1,53 +0,0 @@
[remap]
importer="scene"
importer_version=1
type="PackedScene"
uid="uid://cofaj143gj57"
path="res://.godot/imported/RamenCup.blend-267fe4efd41a0368139bc6b9c125176c.scn"
[deps]
source_file="res://3D/BlenderModels/RamenCup/RamenCup.blend"
dest_files=["res://.godot/imported/RamenCup.blend-267fe4efd41a0368139bc6b9c125176c.scn"]
[params]
nodes/root_type=""
nodes/root_name=""
nodes/apply_root_scale=true
nodes/root_scale=1.0
nodes/import_as_skeleton_bones=false
nodes/use_node_type_suffixes=true
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={}
blender/nodes/visible=0
blender/nodes/active_collection_only=false
blender/nodes/punctual_lights=true
blender/nodes/cameras=true
blender/nodes/custom_properties=true
blender/nodes/modifiers=1
blender/meshes/colors=false
blender/meshes/uvs=true
blender/meshes/normals=true
blender/meshes/export_geometry_nodes_instances=false
blender/meshes/tangents=true
blender/meshes/skins=2
blender/meshes/export_bones_deforming_mesh_only=false
blender/materials/unpack_enabled=true
blender/materials/export_materials=1
blender/animation/limit_playback=true
blender/animation/always_sample=true
blender/animation/group_tracks=true

Binary file not shown.

View file

@ -1,34 +0,0 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dianwhkulblrk"
path="res://.godot/imported/AC_Unit_Texture.png-7e5bad1b2de96d19414e6eb86e1af89b.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://3D/BlockbenchModels/ACUnit/AC_Unit_Texture.png"
dest_files=["res://.godot/imported/AC_Unit_Texture.png-7e5bad1b2de96d19414e6eb86e1af89b.ctex"]
[params]
compress/mode=3
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

View file

@ -1 +0,0 @@
{"meta":{"format_version":"4.10","model_format":"free","box_uv":false},"name":"Ac_Unit","model_identifier":"","visible_box":[1,1,0],"variable_placeholders":"","variable_placeholder_buttons":[],"timeline_setups":[],"unhandled_root_fields":{},"resolution":{"width":64,"height":64},"elements":[{"name":"cuboid","color":0,"origin":[0,4,0],"rotation":[0,0,0],"export":true,"visibility":true,"locked":false,"render_order":"default","allow_mirror_modeling":true,"vertices":{"Lj0R":[8,4,4],"KI7Z":[8,-12,4],"aTe5":[8,-12,0],"g1ho":[-8,4,4],"9YJN":[-8,-12,4],"zTlB":[-8,-12,0],"qjjk":[8,2,-4],"ymoj":[8,-12,-4],"AVVF":[-8,2,-4],"1Lof":[-8,-12,-4],"m8fG":[8,4,0],"o8K3":[-8,4,0]},"faces":{"YKYX3k6T":{"uv":{"aTe5":[21,26],"m8fG":[21,10],"KI7Z":[17,26],"Lj0R":[17,10]},"vertices":["Lj0R","KI7Z","m8fG","aTe5"],"texture":0},"rWWy7o3o":{"uv":{"zTlB":[30,26],"9YJN":[34,26],"o8K3":[30,10],"g1ho":[34,10]},"vertices":["g1ho","o8K3","9YJN","zTlB"],"texture":0},"DEcRKOEc":{"uv":{"o8K3":[17,4.4721],"g1ho":[17,8.4721],"m8fG":[33,4.4721],"Lj0R":[33,8.4721]},"vertices":["Lj0R","m8fG","g1ho","o8K3"],"texture":0},"BjiNFCSQ":{"uv":{"zTlB":[17,31],"aTe5":[33,31],"9YJN":[17,27],"KI7Z":[33,27]},"vertices":["KI7Z","9YJN","aTe5","zTlB"],"texture":0},"Z85NeLAd":{"uv":{"9YJN":[0,16],"KI7Z":[16,16],"g1ho":[0,0],"Lj0R":[16,0]},"vertices":["Lj0R","g1ho","KI7Z","9YJN"],"texture":0},"Xb662oxj":{"uv":{"1Lof":[16,31],"AVVF":[16,17],"ymoj":[0,31],"qjjk":[0,17]},"vertices":["qjjk","ymoj","AVVF","1Lof"],"texture":0},"8s16Us6b":{"uv":{"aTe5":[21,26],"m8fG":[21,10],"qjjk":[25,12],"ymoj":[25,26]},"vertices":["ymoj","qjjk","m8fG","aTe5"],"texture":0},"RjivK1pS":{"uv":{"zTlB":[17,31],"aTe5":[33,31],"ymoj":[33,35],"1Lof":[17,35]},"vertices":["1Lof","ymoj","aTe5","zTlB"],"texture":0},"0Ka0QePN":{"uv":{"o8K3":[30,10],"zTlB":[30,26],"1Lof":[26,26],"AVVF":[26,12]},"vertices":["AVVF","1Lof","zTlB","o8K3"],"texture":0},"2qS8dPrl":{"uv":{"m8fG":[33,4.4721],"o8K3":[17,4.4721],"AVVF":[17,0],"qjjk":[33,0]},"vertices":["qjjk","AVVF","o8K3","m8fG"],"texture":0}},"type":"mesh","uuid":"7d1d7ddc-1ce0-08b5-15fa-39ea758aecbc"}],"outliner":["7d1d7ddc-1ce0-08b5-15fa-39ea758aecbc"],"textures":[{"path":"D:\\Maddo\\cirnogodot\\3D\\BlockbenchModels\\ACUnit\\AC_Unit_Texture.png","name":"AC_Unit_Texture.png","folder":"block","namespace":"","id":"0","group":"","width":64,"height":64,"uv_width":64,"uv_height":64,"particle":false,"use_as_default":false,"layers_enabled":false,"sync_to_project":"","render_mode":"default","render_sides":"auto","pbr_channel":"color","frame_time":1,"frame_order_type":"loop","frame_order":"","frame_interpolate":false,"visible":true,"internal":true,"saved":true,"uuid":"daed3115-ad8c-25f5-4074-6be0564f17fd","relative_path":"AC_Unit_Texture.png","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAd1JREFUeF7tmbFKxEAQhueeQsFSSGmtgvoQtjYWgggKgp21nSAoyHU2ttr5Aj6CZUDQQvBAn0HJkYWguWSTmTD/3v1p0uzsznzz7+5kMjo9Of4RxXN1fTOymEPhgsp06vz22mqvSZ5fXiUA0M7RywEDI1MAO+u3Igcib08i749HUe4FiFGDBxhkCqCPf3MDoE/wwabYRhp7ja2ZAiZf35LnuWRZ1um9tbkxPUc0QWhsCcDqFlh4BWhkmPwW0ATvbWt2BtQFUpfZWVWjlwrMAPytBIv7vXrNVQOvGzt3AELwMeWyZzE0mAIIoCSQhAI0J3Hb1yA8AE3wwbapmIIHYNHMSB6AtplBAA1dpSS2ABUwYE+QCohonLISLCFZXMld52ApHNMRuhjf/+v1nR/uSXV/N5GP+XkC/TXYBqCr7JDGR22BNgC7+2eq32sPd5fYXeEYACtLy70S+zH5FHgAsyILZ0ChgKQB9EpdaVQcXkkD0AQfbAkg5S1ABRgQSPoaNIg/6SncChAUagSAkgkvP6gAL/Io61IBKJnw8oMK8CKPsi4VgJIJLz+oAC/yKOtSASiZ8PKDCvAij7IuFYCSCS8/qAAv8ijrUgEomfDygwrwIo+yLhWAkgkvPxZeAb+ZzGpfnAiP5AAAAABJRU5ErkJggg=="}],"export_options":{"gltf":{"encoding":"binary","scale":16,"embed_textures":true,"armature":false,"animations":true}}}

View file

@ -1 +0,0 @@
{"asset":{"version":"2.0","generator":"Blockbench 4.12.4 glTF exporter"},"scenes":[{"nodes":[1],"name":"blockbench_export"}],"scene":0,"nodes":[{"translation":[0,0.25,0],"name":"cuboid","mesh":0},{"children":[0]}],"bufferViews":[{"buffer":0,"byteOffset":0,"byteLength":480,"target":34962,"byteStride":12},{"buffer":0,"byteOffset":480,"byteLength":480,"target":34962,"byteStride":12},{"buffer":0,"byteOffset":960,"byteLength":320,"target":34962,"byteStride":8},{"buffer":0,"byteOffset":1280,"byteLength":120,"target":34963}],"buffers":[{"byteLength":1400,"uri":"data:application/octet-stream;base64,AAAAPwAAgD4AAIA+AAAAPwAAQL8AAIA+AAAAPwAAgD4AAAAAAAAAPwAAQL8AAAAAAAAAvwAAgD4AAIA+AAAAvwAAgD4AAAAAAAAAvwAAQL8AAIA+AAAAvwAAQL8AAAAAAAAAPwAAgD4AAIA+AAAAPwAAgD4AAAAAAAAAvwAAgD4AAIA+AAAAvwAAgD4AAAAAAAAAPwAAQL8AAIA+AAAAvwAAQL8AAIA+AAAAPwAAQL8AAAAAAAAAvwAAQL8AAAAAAAAAPwAAgD4AAIA+AAAAvwAAgD4AAIA+AAAAPwAAQL8AAIA+AAAAvwAAQL8AAIA+AAAAPwAAAD4AAIC+AAAAPwAAQL8AAIC+AAAAvwAAAD4AAIC+AAAAvwAAQL8AAIC+AAAAPwAAQL8AAIC+AAAAPwAAAD4AAIC+AAAAPwAAgD4AAAAAAAAAPwAAQL8AAAAAAAAAvwAAQL8AAIC+AAAAPwAAQL8AAIC+AAAAPwAAQL8AAAAAAAAAvwAAQL8AAAAAAAAAvwAAAD4AAIC+AAAAvwAAQL8AAIC+AAAAvwAAQL8AAAAAAAAAvwAAgD4AAAAAAAAAPwAAAD4AAIC+AAAAvwAAAD4AAIC+AAAAvwAAgD4AAAAAAAAAPwAAgD4AAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAAAAAC75ZD8u+eS+AAAAAC75ZD8u+eS+AAAAAC75ZD8u+eS+AAAAAC75ZD8u+eS+AACIPgAAID4AAIg+AADQPgAAqD4AACA+AACoPgAA0D4AAAg/AAAgPgAA8D4AACA+AAAIPwAA0D4AAPA+AADQPgAABD+4jQc+AAAEP3Abjz0AAIg+uI0HPgAAiD5wG489AAAEPwAA2D4AAIg+AADYPgAABD8AAPg+AACIPgAA+D4AAIA+AAAAAAAAAAAAAAAAAACAPgAAgD4AAAAAAACAPgAAAAAAAIg+AAAAAAAA+D4AAIA+AACIPgAAgD4AAPg+AADIPgAA0D4AAMg+AABAPgAAqD4AACA+AACoPgAA0D4AAIg+AAAMPwAABD8AAAw/AAAEPwAA+D4AAIg+AAD4PgAA0D4AAEA+AADQPgAA0D4AAPA+AADQPgAA8D4AACA+AAAEPwAAAAAAAIg+AAAAAAAAiD5wG489AAAEP3Abjz0CAAAAAQACAAEAAwAGAAQABQAGAAUABwAKAAgACQAKAAkACwAOAAwADQAOAA0ADwASABAAEQASABEAEwAWABQAFQAWABUAFwAYABkAGgAYABoAGwAcAB0AHgAcAB4AHwAgACEAIgAgACIAIwAkACUAJgAkACYAJwA="}],"accessors":[{"bufferView":0,"componentType":5126,"count":40,"max":[0.5,0.25,0.25],"min":[-0.5,-0.75,-0.25],"type":"VEC3"},{"bufferView":1,"componentType":5126,"count":40,"max":[1,1,1],"min":[-1,-1,-1],"type":"VEC3"},{"bufferView":2,"componentType":5126,"count":40,"max":[0.53125,0.546875],"min":[0,0],"type":"VEC2"},{"bufferView":3,"componentType":5123,"count":60,"max":[39],"min":[0],"type":"SCALAR"}],"materials":[{"pbrMetallicRoughness":{"metallicFactor":0,"roughnessFactor":1,"baseColorTexture":{"index":0}},"alphaMode":"MASK","alphaCutoff":0.05,"doubleSided":true}],"textures":[{"sampler":0,"source":0,"name":"texture"}],"samplers":[{"magFilter":9728,"minFilter":9728,"wrapS":33071,"wrapT":33071}],"images":[{"mimeType":"image/png","uri":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAd1JREFUeF7tmbFKxEAQhueeQsFSSGmtgvoQtjYWgggKgp21nSAoyHU2ttr5Aj6CZUDQQvBAn0HJkYWguWSTmTD/3v1p0uzsznzz7+5kMjo9Of4RxXN1fTOymEPhgsp06vz22mqvSZ5fXiUA0M7RywEDI1MAO+u3Igcib08i749HUe4FiFGDBxhkCqCPf3MDoE/wwabYRhp7ja2ZAiZf35LnuWRZ1um9tbkxPUc0QWhsCcDqFlh4BWhkmPwW0ATvbWt2BtQFUpfZWVWjlwrMAPytBIv7vXrNVQOvGzt3AELwMeWyZzE0mAIIoCSQhAI0J3Hb1yA8AE3wwbapmIIHYNHMSB6AtplBAA1dpSS2ABUwYE+QCohonLISLCFZXMld52ApHNMRuhjf/+v1nR/uSXV/N5GP+XkC/TXYBqCr7JDGR22BNgC7+2eq32sPd5fYXeEYACtLy70S+zH5FHgAsyILZ0ChgKQB9EpdaVQcXkkD0AQfbAkg5S1ABRgQSPoaNIg/6SncChAUagSAkgkvP6gAL/Io61IBKJnw8oMK8CKPsi4VgJIJLz+oAC/yKOtSASiZ8PKDCvAij7IuFYCSCS8/qAAv8ijrUgEomfDygwrwIo+yLhWAkgkvPxZeAb+ZzGpfnAiP5AAAAABJRU5ErkJggg=="}],"meshes":[{"primitives":[{"mode":4,"attributes":{"POSITION":0,"NORMAL":1,"TEXCOORD_0":2},"indices":3,"material":0}]}]}

View file

@ -1,37 +0,0 @@
[remap]
importer="scene"
importer_version=1
type="PackedScene"
uid="uid://x4e44n141uwc"
path="res://.godot/imported/Ac_Unit.gltf-68696e33c8526eb0cedeee3ca3698d18.scn"
[deps]
source_file="res://3D/BlockbenchModels/ACUnit/Ac_Unit.gltf"
dest_files=["res://.godot/imported/Ac_Unit.gltf-68696e33c8526eb0cedeee3ca3698d18.scn"]
[params]
nodes/root_type=""
nodes/root_name=""
nodes/apply_root_scale=true
nodes/root_scale=1.0
nodes/import_as_skeleton_bones=false
nodes/use_node_type_suffixes=true
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=1
gltf/embedded_image_handling=1

BIN
3D/BlockbenchModels/ACUnit/Ac_Unit_0.png (Stored with Git LFS)

Binary file not shown.

View file

@ -1,37 +0,0 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dbq6f7v0oijau"
path="res://.godot/imported/Ac_Unit_0.png-682fbfc367cce116d16e177637404727.ctex"
metadata={
"vram_texture": false
}
generator_parameters={
"md5": "c2068573f2a237716f330f59f3b5466b"
}
[deps]
source_file="res://3D/BlockbenchModels/ACUnit/Ac_Unit_0.png"
dest_files=["res://.godot/imported/Ac_Unit_0.png-682fbfc367cce116d16e177637404727.ctex"]
[params]
compress/mode=3
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

View file

@ -1 +0,0 @@
{"meta":{"format_version":"4.10","model_format":"free","box_uv":false},"name":"Alarm_Box","model_identifier":"","visible_box":[1,1,0],"variable_placeholders":"","variable_placeholder_buttons":[],"timeline_setups":[],"unhandled_root_fields":{},"reexport":{"codec":"gltf","codec_options":{"encoding":"ascii","scale":16,"embed_textures":true,"armature":false,"animations":true},"path":".\\Alarm_Box.gltf","enabled":true},"resolution":{"width":32,"height":32},"elements":[{"name":"cuboid","color":7,"origin":[0,0,0],"rotation":[0,0,0],"export":true,"visibility":true,"locked":false,"render_order":"default","allow_mirror_modeling":true,"vertices":{"5opu":[3,4,1],"Cl1p":[3,4,-1],"AICL":[3,-4,1],"Byg2":[3,-4,-1],"wCv1":[-3,4,1],"8LyQ":[-3,4,-1],"1jpQ":[-3,-4,1],"GO5x":[-3,-4,-1]},"faces":{"miXhwLeZ":{"uv":{"Byg2":[2,17],"Cl1p":[2,9],"AICL":[0,17],"5opu":[0,9]},"vertices":["5opu","AICL","Cl1p","Byg2"],"texture":0},"GOaUCZp2":{"uv":{"GO5x":[3,17],"1jpQ":[5,17],"8LyQ":[3,9],"wCv1":[5,9]},"vertices":["wCv1","8LyQ","1jpQ","GO5x"],"texture":0},"pjBt281A":{"uv":{"8LyQ":[6,9],"wCv1":[6,11],"Cl1p":[12,9],"5opu":[12,11]},"vertices":["5opu","Cl1p","wCv1","8LyQ"],"texture":0},"NkP4CMPs":{"uv":{"GO5x":[6,14],"Byg2":[12,14],"1jpQ":[6,12],"AICL":[12,12]},"vertices":["AICL","1jpQ","Byg2","GO5x"],"texture":0},"cekcPWGv":{"uv":{"1jpQ":[0,8],"AICL":[6,8],"wCv1":[0,0],"5opu":[6,0]},"vertices":["5opu","wCv1","AICL","1jpQ"],"texture":0},"NTRKbQIG":{"uv":{"GO5x":[13,8],"8LyQ":[13,0],"Byg2":[7,8],"Cl1p":[7,0]},"vertices":["Cl1p","Byg2","8LyQ","GO5x"],"texture":0}},"type":"mesh","uuid":"d9ea70d8-4592-8eee-08a5-e00b25615461"}],"outliner":[{"name":"cuboid","origin":[0,0,0],"color":0,"uuid":"7c8b5e76-1bb8-dc06-d413-10ddabf564e4","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"selected":true,"children":["d9ea70d8-4592-8eee-08a5-e00b25615461"]}],"textures":[{"path":"K:\\godot\\cirno\\3D\\BlockbenchModels\\AlarmBox\\Alarm_Box_Texture.png","name":"Alarm_Box_Texture.png","folder":"block","namespace":"","id":"0","group":"","width":32,"height":64,"uv_width":32,"uv_height":32,"particle":false,"use_as_default":false,"layers_enabled":false,"sync_to_project":"","render_mode":"default","render_sides":"auto","pbr_channel":"color","frame_time":1,"frame_order_type":"loop","frame_order":"","frame_interpolate":false,"visible":true,"internal":true,"saved":true,"uuid":"b7f62370-e6b7-1dff-7e06-688881b59fe2","relative_path":"Alarm_Box_Texture.png","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAABACAYAAAB7jnWuAAAAAXNSR0IArs4c6QAAAQpJREFUaENjdOBK+c+ABRz4NoeRXDls5uESI2hJpOB2FL3L33sywBy3K2EZipzbgiiwHNUdYC4mBjbz5KtXDOgO2LVNASzn5vWAYdQBwzcEkBMV3RMhOVmUpFxAimJaqIWXA8gFD6FCiJoOGbwOoKYv8Zk1eEMAX0VEzdDBGQLUtISsKBg5DqCXT3E2SEYdMBoCoyEwGgKjITAaAqMhQO4YALWabATHB3CNAYAcQJfxAZAl2MYAYA6g+fjAqAMGRQgglxWwURC6JcLR8QH0ECB1HJBQUT94e8eEXE4t+cEbAtSqbAiF1Oj4wMCHAKE4orU8SZMLtHDMqANGQ2A0BEZDYDQERkNgwEMAAOOX2FDRL+YmAAAAAElFTkSuQmCC"}],"animations":[{"uuid":"b98c8ba0-34d6-945e-b3da-4c0b324f80b4","name":"Flash","loop":"loop","override":false,"length":0,"snapping":24,"selected":true,"anim_time_update":"","blend_weight":"","start_delay":"","loop_delay":"","animators":{}}],"export_options":{"gltf":{"encoding":"ascii","scale":16,"embed_textures":true,"armature":false,"animations":true}}}

View file

@ -1 +0,0 @@
{"asset":{"version":"2.0","generator":"Blockbench 4.12.5 glTF exporter"},"scenes":[{"nodes":[2],"name":"blockbench_export"}],"scene":0,"nodes":[{"name":"cuboid","mesh":0},{"name":"cuboid","children":[0]},{"children":[1]}],"bufferViews":[{"buffer":0,"byteOffset":0,"byteLength":288,"target":34962,"byteStride":12},{"buffer":0,"byteOffset":288,"byteLength":288,"target":34962,"byteStride":12},{"buffer":0,"byteOffset":576,"byteLength":192,"target":34962,"byteStride":8},{"buffer":0,"byteOffset":768,"byteLength":72,"target":34963}],"buffers":[{"byteLength":840,"uri":"data:application/octet-stream;base64,AABAPgAAgD4AAIA9AABAPgAAgL4AAIA9AABAPgAAgD4AAIC9AABAPgAAgL4AAIC9AABAvgAAgD4AAIA9AABAvgAAgD4AAIC9AABAvgAAgL4AAIA9AABAvgAAgL4AAIC9AABAPgAAgD4AAIA9AABAPgAAgD4AAIC9AABAvgAAgD4AAIA9AABAvgAAgD4AAIC9AABAPgAAgL4AAIA9AABAvgAAgL4AAIA9AABAPgAAgL4AAIC9AABAvgAAgL4AAIC9AABAPgAAgD4AAIA9AABAvgAAgD4AAIA9AABAPgAAgL4AAIA9AABAvgAAgL4AAIA9AABAPgAAgD4AAIC9AABAPgAAgL4AAIC9AABAvgAAgD4AAIC9AABAvgAAgL4AAIC9AACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAED4AAAAAAACIPgAAgD0AABA+AACAPQAAiD4AACA+AAAQPgAAwD0AABA+AAAgPgAAiD4AAMA9AACIPgAAwD4AADA+AADAPgAAED4AAEA+AAAwPgAAQD4AABA+AADAPgAAQD4AAEA+AABAPgAAwD4AAGA+AABAPgAAYD4AAEA+AAAAAAAAAAAAAAAAAABAPgAAAD4AAAAAAAAAPgAAYD4AAAAAAABgPgAAAD4AANA+AAAAAAAA0D4AAAA+AgAAAAEAAgABAAMABgAEAAUABgAFAAcACgAIAAkACgAJAAsADgAMAA0ADgANAA8AEgAQABEAEgARABMAFgAUABUAFgAVABcA"}],"accessors":[{"bufferView":0,"componentType":5126,"count":24,"max":[0.1875,0.25,0.0625],"min":[-0.1875,-0.25,-0.0625],"type":"VEC3"},{"bufferView":1,"componentType":5126,"count":24,"max":[1,1,1],"min":[-1,-1,-1],"type":"VEC3"},{"bufferView":2,"componentType":5126,"count":24,"max":[0.40625,0.265625],"min":[0,0],"type":"VEC2"},{"bufferView":3,"componentType":5123,"count":36,"max":[23],"min":[0],"type":"SCALAR"}],"materials":[{"pbrMetallicRoughness":{"metallicFactor":0,"roughnessFactor":1,"baseColorTexture":{"index":0}},"alphaMode":"MASK","alphaCutoff":0.05,"doubleSided":true}],"textures":[{"sampler":0,"source":0,"name":"Alarm_Box_Texture.png"}],"samplers":[{"magFilter":9728,"minFilter":9728,"wrapS":33071,"wrapT":33071}],"images":[{"mimeType":"image/png","uri":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAABACAYAAAB7jnWuAAAAAXNSR0IArs4c6QAAAQpJREFUaENjdOBK+c+ABRz4NoeRXDls5uESI2hJpOB2FL3L33sywBy3K2EZipzbgiiwHNUdYC4mBjbz5KtXDOgO2LVNASzn5vWAYdQBwzcEkBMV3RMhOVmUpFxAimJaqIWXA8gFD6FCiJoOGbwOoKYv8Zk1eEMAX0VEzdDBGQLUtISsKBg5DqCXT3E2SEYdMBoCoyEwGgKjITAaAqMhQO4YALWabATHB3CNAYAcQJfxAZAl2MYAYA6g+fjAqAMGRQgglxWwURC6JcLR8QH0ECB1HJBQUT94e8eEXE4t+cEbAtSqbAiF1Oj4wMCHAKE4orU8SZMLtHDMqANGQ2A0BEZDYDQERkNgwEMAAOOX2FDRL+YmAAAAAElFTkSuQmCC"}],"meshes":[{"primitives":[{"mode":4,"attributes":{"POSITION":0,"NORMAL":1,"TEXCOORD_0":2},"indices":3,"material":0}]}]}

View file

@ -1,44 +0,0 @@
[remap]
importer="scene"
importer_version=1
type="PackedScene"
uid="uid://s4yb3i3td11j"
path="res://.godot/imported/Alarm_Box.gltf-79cce85ea6d67a977a3823dc06b70e62.scn"
[deps]
source_file="res://3D/BlockbenchModels/AlarmBox/Alarm_Box.gltf"
dest_files=["res://.godot/imported/Alarm_Box.gltf-79cce85ea6d67a977a3823dc06b70e62.scn"]
[params]
nodes/root_type=""
nodes/root_name=""
nodes/apply_root_scale=true
nodes/root_scale=1.0
nodes/import_as_skeleton_bones=false
nodes/use_node_type_suffixes=true
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={
"materials": {
"material_0": {
"use_external/enabled": true,
"use_external/path": "res://3D/BlockbenchModels/AlarmBox/material_0.tres"
}
}
}
gltf/naming_version=1
gltf/embedded_image_handling=1

Binary file not shown.

View file

@ -1,37 +0,0 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://oo51h3hyujqp"
path="res://.godot/imported/Alarm_Box_0.png-42907ce3a19eefa695dd742bc9aa505f.ctex"
metadata={
"vram_texture": false
}
generator_parameters={
"md5": "aade551d0925ddcd43679716d1a43978"
}
[deps]
source_file="res://3D/BlockbenchModels/AlarmBox/Alarm_Box_0.png"
dest_files=["res://.godot/imported/Alarm_Box_0.png-42907ce3a19eefa695dd742bc9aa505f.ctex"]
[params]
compress/mode=3
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

Binary file not shown.

View file

@ -1,34 +0,0 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://cte3mw5exjj6e"
path="res://.godot/imported/Alarm_Box_Texture.png-0ab5267b69385f9dbb87763674013c24.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://3D/BlockbenchModels/AlarmBox/Alarm_Box_Texture.png"
dest_files=["res://.godot/imported/Alarm_Box_Texture.png-0ab5267b69385f9dbb87763674013c24.ctex"]
[params]
compress/mode=3
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

View file

@ -1,13 +0,0 @@
[gd_resource type="StandardMaterial3D" format=3 uid="uid://u6ydl4us550b"]
[ext_resource type="Texture2D" uid="uid://oo51h3hyujqp" path="res://3D/BlockbenchModels/AlarmBox/Alarm_Box_0.png" id="1_vfsbh"]
[resource]
resource_name = "material_0"
transparency = 2
alpha_scissor_threshold = 0.05
alpha_antialiasing_mode = 0
cull_mode = 2
albedo_texture = ExtResource("1_vfsbh")
texture_filter = 0
texture_repeat = false

View file

@ -1 +0,0 @@
{"meta":{"format_version":"4.10","model_format":"free","box_uv":false},"name":"Alarm_Sign","model_identifier":"","visible_box":[1,1,0],"variable_placeholders":"","variable_placeholder_buttons":[],"timeline_setups":[],"unhandled_root_fields":{},"resolution":{"width":32,"height":32},"elements":[{"name":"cuboid","color":2,"origin":[0,0,0],"rotation":[0,0,0],"export":true,"visibility":true,"locked":false,"render_order":"default","allow_mirror_modeling":true,"vertices":{"dr6y":[8,6,0],"fSHN":[8,6,-1],"Dkzk":[8,2,0],"RWMT":[8,2,-1],"gaMW":[-8,6,0],"0NZD":[-8,6,-1],"MLIW":[-8,2,0],"9Zpw":[-8,2,-1],"uBTr":[7,5,-2],"RpSF":[7,3,-2],"wJ8F":[-7,5,-2],"20BN":[-7,3,-2]},"faces":{"tgWos2eC":{"uv":{"RWMT":[1,20],"fSHN":[1,16],"Dkzk":[0,20],"dr6y":[0,16]},"vertices":["dr6y","Dkzk","fSHN","RWMT"],"texture":0},"bIJaI4ly":{"uv":{"9Zpw":[2,20],"MLIW":[3,20],"0NZD":[2,16],"gaMW":[3,16]},"vertices":["gaMW","0NZD","MLIW","9Zpw"],"texture":0},"uVZ7EKVw":{"uv":{"0NZD":[0,8],"gaMW":[0,9],"fSHN":[16,8],"dr6y":[16,9]},"vertices":["dr6y","fSHN","gaMW","0NZD"],"texture":0},"SS9zGgWD":{"uv":{"9Zpw":[0,11],"RWMT":[16,11],"MLIW":[0,10],"Dkzk":[16,10]},"vertices":["Dkzk","MLIW","RWMT","9Zpw"],"texture":0},"68xjIVZ6":{"uv":{"MLIW":[0,4],"Dkzk":[16,4],"gaMW":[0,0],"dr6y":[16,0]},"vertices":["dr6y","gaMW","Dkzk","MLIW"],"texture":0},"FTAIbsvc":{"uv":{"uBTr":[0,5],"RpSF":[0,7],"wJ8F":[14,5],"20BN":[14,7]},"vertices":["uBTr","RpSF","wJ8F","20BN"],"texture":0},"z8A8Wq4Z":{"uv":{"wJ8F":[15,13],"uBTr":[1,13],"fSHN":[0,12],"0NZD":[16,12]},"vertices":["uBTr","wJ8F","0NZD","fSHN"],"texture":0},"VFZRK09S":{"uv":{"RpSF":[5,19],"uBTr":[5,17],"RWMT":[4,20],"fSHN":[4,16]},"vertices":["RpSF","uBTr","fSHN","RWMT"],"texture":0},"VvS3mzKk":{"uv":{"20BN":[15,14],"RpSF":[1,14],"9Zpw":[16,15],"RWMT":[0,15]},"vertices":["20BN","RpSF","RWMT","9Zpw"],"texture":0},"c8RhnKva":{"uv":{"20BN":[6,19],"wJ8F":[6,17],"0NZD":[7,16],"9Zpw":[7,20]},"vertices":["wJ8F","20BN","9Zpw","0NZD"],"texture":0}},"type":"mesh","uuid":"466edec8-4e55-9f0c-8b81-f18d93215b8e"}],"outliner":["466edec8-4e55-9f0c-8b81-f18d93215b8e"],"textures":[{"path":"","name":"texture","folder":"block","namespace":"","id":"0","group":"","width":32,"height":32,"uv_width":32,"uv_height":32,"particle":false,"use_as_default":false,"layers_enabled":false,"sync_to_project":"","render_mode":"default","render_sides":"auto","pbr_channel":"color","frame_time":1,"frame_order_type":"loop","frame_order":"","frame_interpolate":false,"visible":true,"internal":true,"saved":true,"uuid":"a191efe9-97a2-f1a0-547f-603f96667165","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAK5JREFUWEdjTEpK+s9AAZg3bx4jBdoZGEcdMOAhQEn8UUMvYwcf3//UhASwWbMXLGAAsUE0CKCLI1soPGkSRYkPZhbj27y8/8gWY7MUJo/sSKo5gBrBSIkZA58NKXE9NfSOhgCjHScnRXXBoe/fKcqOFGmmShoYDQFQZQSq02E0KERA8QqjqRHM+MyAWzzqgAELAVrHMSHzB74cIORCWsuPhsBoCIyGwGgIDHgIAAAudoAh1QWr0AAAAABJRU5ErkJggg=="}]}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -1,37 +0,0 @@
[remap]
importer="scene"
importer_version=1
type="PackedScene"
uid="uid://c6k5ii0onbh3j"
path="res://.godot/imported/Barrel.gltf-033e7b9c1e31cb6511d8d8b9c8f09592.scn"
[deps]
source_file="res://3D/BlockbenchModels/Barrel/Barrel.gltf"
dest_files=["res://.godot/imported/Barrel.gltf-033e7b9c1e31cb6511d8d8b9c8f09592.scn"]
[params]
nodes/root_type=""
nodes/root_name=""
nodes/apply_root_scale=true
nodes/root_scale=1.0
nodes/import_as_skeleton_bones=false
nodes/use_node_type_suffixes=true
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=1
gltf/embedded_image_handling=1

BIN
3D/BlockbenchModels/Barrel/Barrel_0.png (Stored with Git LFS)

Binary file not shown.

View file

@ -1,37 +0,0 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://ce12nbymqk7eu"
path="res://.godot/imported/Barrel_0.png-ea40281661ff45b381d803800b1f2f37.ctex"
metadata={
"vram_texture": false
}
generator_parameters={
"md5": "2534c8a8e4bbb92d500633735de1d414"
}
[deps]
source_file="res://3D/BlockbenchModels/Barrel/Barrel_0.png"
dest_files=["res://.godot/imported/Barrel_0.png-ea40281661ff45b381d803800b1f2f37.ctex"]
[params]
compress/mode=3
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

BIN
3D/BlockbenchModels/Barrel/Barrel_1.png (Stored with Git LFS)

Binary file not shown.

View file

@ -1,37 +0,0 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://cd832q85enry5"
path="res://.godot/imported/Barrel_1.png-384929c143219694d75a2af907eabeac.ctex"
metadata={
"vram_texture": false
}
generator_parameters={
"md5": "02149eab1cadac3a944d26e9f49ac1ad"
}
[deps]
source_file="res://3D/BlockbenchModels/Barrel/Barrel_1.png"
dest_files=["res://.godot/imported/Barrel_1.png-384929c143219694d75a2af907eabeac.ctex"]
[params]
compress/mode=3
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

View file

@ -1 +0,0 @@
{"meta":{"format_version":"4.10","model_format":"free","box_uv":false},"name":"Box","model_identifier":"","visible_box":[1,1,0],"variable_placeholders":"","variable_placeholder_buttons":[],"timeline_setups":[],"unhandled_root_fields":{},"resolution":{"width":64,"height":64},"elements":[{"name":"cuboid","color":7,"origin":[0,5,0],"rotation":[0,0,0],"export":true,"visibility":true,"locked":false,"render_order":"default","allow_mirror_modeling":true,"vertices":{"Rq3c":[6,3,6],"FA7g":[6,3,-6],"fqA2":[8,0,8],"2irk":[8,0,-8],"VoiW":[-6,3,6],"OdCf":[-6,3,-6],"xj38":[-8,0,8],"tJTk":[-8,0,-8],"cvNb":[8,-9,8],"ZdbQ":[-8,-9,8],"UGPg":[8,-9,-8],"VP8t":[-8,-9,-8],"AkzS":[6,-12,6],"ZhlV":[-6,-12,6],"yIc1":[6,-12,-6],"HiWQ":[-6,-12,-6]},"faces":{"QEKCmjpY":{"uv":{"2irk":[16,3.6055],"FA7g":[14,0],"fqA2":[0,3.6055],"Rq3c":[2,0]},"vertices":["Rq3c","fqA2","FA7g","2irk"],"texture":0},"netsCf91":{"uv":{"tJTk":[0,33.6055],"xj38":[16,33.6055],"OdCf":[2,30],"VoiW":[14,30]},"vertices":["VoiW","OdCf","xj38","tJTk"],"texture":0},"WjD6zziy":{"uv":{"OdCf":[17,0],"VoiW":[17,12],"FA7g":[29,0],"Rq3c":[29,12]},"vertices":["Rq3c","FA7g","VoiW","OdCf"],"texture":0},"LBEl8mTh":{"uv":{"AkzS":[44,31],"ZhlV":[32,31],"yIc1":[44,43],"HiWQ":[32,43]},"vertices":["AkzS","ZhlV","yIc1","HiWQ"],"texture":0},"AWj2bz05":{"uv":{"xj38":[16,18.6055],"fqA2":[32,18.6055],"VoiW":[18,15],"Rq3c":[30,15]},"vertices":["Rq3c","VoiW","fqA2","xj38"],"texture":0},"2lXv9JfY":{"uv":{"tJTk":[48,3.6055],"OdCf":[46,0],"2irk":[32,3.6055],"FA7g":[34,0]},"vertices":["FA7g","2irk","OdCf","tJTk"],"texture":0},"D1D6AVJY":{"uv":{"UGPg":[16,12.6055],"cvNb":[0,12.6055],"fqA2":[0,3.6055],"2irk":[16,3.6055]},"vertices":["cvNb","UGPg","2irk","fqA2"],"texture":0},"9NJUIRlY":{"uv":{"ZdbQ":[16,27.6055],"cvNb":[32,27.6055],"xj38":[16,18.6055],"fqA2":[32,18.6055]},"vertices":["ZdbQ","cvNb","fqA2","xj38"],"texture":0},"U5Q33q5M":{"uv":{"VP8t":[0,42.6055],"ZdbQ":[16,42.6055],"tJTk":[0,33.6055],"xj38":[16,33.6055]},"vertices":["VP8t","ZdbQ","xj38","tJTk"],"texture":0},"Aou9CP4o":{"uv":{"VP8t":[48,12.6055],"UGPg":[32,12.6055],"2irk":[32,3.6055],"tJTk":[48,3.6055]},"vertices":["UGPg","VP8t","tJTk","2irk"],"texture":0},"DIvObEzH":{"uv":{"yIc1":[14,16.211],"AkzS":[2,16.211],"cvNb":[0,12.6055],"UGPg":[16,12.6055]},"vertices":["AkzS","yIc1","UGPg","cvNb"],"texture":0},"N5IyzsTX":{"uv":{"ZhlV":[18,31.211],"AkzS":[30,31.211],"ZdbQ":[16,27.6055],"cvNb":[32,27.6055]},"vertices":["ZhlV","AkzS","cvNb","ZdbQ"],"texture":0},"c6HPcbw1":{"uv":{"HiWQ":[2,46.211],"ZhlV":[14,46.211],"VP8t":[0,42.6055],"ZdbQ":[16,42.6055]},"vertices":["HiWQ","ZhlV","ZdbQ","VP8t"],"texture":0},"nbAbo00H":{"uv":{"HiWQ":[46,16.211],"yIc1":[34,16.211],"UGPg":[32,12.6055],"VP8t":[48,12.6055]},"vertices":["yIc1","HiWQ","VP8t","UGPg"],"texture":0}},"type":"mesh","uuid":"43929b29-5957-21b8-18b2-d14bba12cf68"}],"outliner":["43929b29-5957-21b8-18b2-d14bba12cf68"],"textures":[{"path":"K:\\godot\\cirno\\3D\\BlockbenchModels\\Box\\Box_Texture.png","name":"Box_Texture.png","folder":"block","namespace":"","id":"0","group":"","width":64,"height":64,"uv_width":64,"uv_height":64,"particle":false,"use_as_default":false,"layers_enabled":false,"sync_to_project":"","render_mode":"default","render_sides":"auto","pbr_channel":"color","frame_time":1,"frame_order_type":"loop","frame_order":"","frame_interpolate":false,"visible":true,"internal":true,"saved":true,"uuid":"39f674e1-b239-525d-7cc8-b41a6fc31639","relative_path":"Box_Texture.png","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAl9JREFUeF7tWSFOBEEQnDUY0ASJAgQoLAJBeACWL/ADND/gC1geQBAILOoQgEISNBgMZBZmMzdhb+muvq3J0Ws2l0xPdVdXz3XvNCGEcHz99hnf0ufiYKXR2Ce7hIfiS/3O1zcRfH1tWbXH88t7iMFI9kg2efAovsr5HyOR8yWQE+AKmF0CZ9tNOL2fPl6qLYHdmy1RKd3tP4ShEpAQgOCLHC8Wd2dAdGB1YynsHU7aJbdXO+37t9+X55thiIAYfHz+qgAE34yAo5PHweDjgiEC8syXKugrgUiAFt+UgFmZT8p4ffoYVECfU0MEaPDNCIgl0Cf7vCzmRYAW35QAqzNAowDtGWRGgGSj8hCU2OatcOoi6f8CkgDS2rKeNXtI2ui+TlSDm2xMWmHEASfAYBhDEtCNs9KJLJc/Os5qVGBRfpE41TyfGJeOwn01jBIIKwDZQJM9y0MU8b1TALKJE0A+xJDkmSqA1chURQCjla2KAMY4Wx0BY4+zVRHAGGerI0AzTqNBIPbfH+6Ahz3OAq63pmYEaByx6uc12N04jBhHW+8EF6ETRKcxjQpqkH97BmicL6c5hECpbXm1jpawCQGIE5IEzEM1ToAkA2WmLTIiwbfAK2OYuhyVSDm/F5DYlWurIoAxzlZFAGOcrY6AscfZqghgjLPVETD2OFsVAZLTfOH+BSTBl62wxjbZ/PtWGCHPwpbeClsEgexhcjuMOMC2hW+H2QGg+PA3QdQBtr0TwM4AG98VwM4AG98VwM4AG98VwM4AG98VwM4AG98VwM4AG98VwM4AG98VwM4AG/8LczCDbjaA8AQAAAAASUVORK5CYII="}],"export_options":{"gltf":{"encoding":"binary","scale":16,"embed_textures":true,"armature":false,"animations":false}}}

File diff suppressed because one or more lines are too long

View file

@ -1,37 +0,0 @@
[remap]
importer="scene"
importer_version=1
type="PackedScene"
uid="uid://6nkqywi3tc5m"
path="res://.godot/imported/Box.gltf-dfd17a138337324fa8071c4ac7f24101.scn"
[deps]
source_file="res://3D/BlockbenchModels/Box/Box.gltf"
dest_files=["res://.godot/imported/Box.gltf-dfd17a138337324fa8071c4ac7f24101.scn"]
[params]
nodes/root_type=""
nodes/root_name=""
nodes/apply_root_scale=true
nodes/root_scale=1.0
nodes/import_as_skeleton_bones=false
nodes/use_node_type_suffixes=true
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=1
gltf/embedded_image_handling=1

View file

@ -1,4 +0,0 @@
# Made in Blockbench 4.12.4
newmtl m_39f674e1-b239-525d-7cc8-b41a6fc31639
map_Kd Box_Texture.png
newmtl none

View file

@ -1,105 +0,0 @@
# Made in Blockbench 4.12.4
mtllib Box.mtl
o cuboid
v 0.375 0.9375 0.375
v 0.375 0.9375 -0.375
v 0.5 0.75 0.5
v 0.5 0.75 -0.5
v -0.375 0.9375 0.375
v -0.375 0.9375 -0.375
v -0.5 0.75 0.5
v -0.5 0.75 -0.5
v 0.5 0.1875 0.5
v -0.5 0.1875 0.5
v 0.5 0.1875 -0.5
v -0.5 0.1875 -0.5
v 0.375 0 0.375
v -0.375 0 0.375
v 0.375 0 -0.375
v -0.375 0 -0.375
vt 0.21875 1
vt 0.03125 1
vt 0 0.9436640625
vt 0.25 0.9436640625
vt 0.25 0.4749140625
vt 0.21875 0.53125
vt 0.03125 0.53125
vt 0 0.4749140625
vt 0.265625 0.8125
vt 0.453125 0.8125
vt 0.453125 1
vt 0.265625 1
vt 0.6875 0.328125
vt 0.6875 0.515625
vt 0.5 0.515625
vt 0.5 0.328125
vt 0.5 0.7092890625
vt 0.46875 0.765625
vt 0.28125 0.765625
vt 0.25 0.7092890625
vt 0.71875 1
vt 0.53125 1
vt 0.5 0.9436640625
vt 0.75 0.9436640625
vt 0 0.8030390625
vt 0.25 0.8030390625
vt 0.25 0.9436640625
vt 0 0.9436640625
vt 0.25 0.5686640625
vt 0.5 0.5686640625
vt 0.5 0.7092890625
vt 0.25 0.7092890625
vt 0 0.3342890625
vt 0.25 0.3342890625
vt 0.25 0.4749140625
vt 0 0.4749140625
vt 0.5 0.8030390625
vt 0.75 0.8030390625
vt 0.75 0.9436640625
vt 0.5 0.9436640625
vt 0.03125 0.746703125
vt 0.21875 0.746703125
vt 0.25 0.8030390625
vt 0 0.8030390625
vt 0.28125 0.512328125
vt 0.46875 0.512328125
vt 0.5 0.5686640625
vt 0.25 0.5686640625
vt 0.03125 0.277953125
vt 0.21875 0.277953125
vt 0.25 0.3342890625
vt 0 0.3342890625
vt 0.53125 0.746703125
vt 0.71875 0.746703125
vt 0.75 0.8030390625
vt 0.5 0.8030390625
vn 0.8320502943378438 0.5547001962252291 0
vn -0.8320502943378438 0.5547001962252291 0
vn 0 1 0
vn 0 -1 0
vn 0 0.5547001962252291 0.8320502943378438
vn 0 0.5547001962252291 -0.8320502943378438
vn 1 0 0
vn 0 0 1
vn -1 0 0
vn 0 0 -1
vn 0.8320502943378438 -0.5547001962252291 0
vn 0 -0.5547001962252291 0.8320502943378438
vn -0.8320502943378438 -0.5547001962252291 0
vn 0 -0.5547001962252291 -0.8320502943378438
usemtl m_39f674e1-b239-525d-7cc8-b41a6fc31639
f 2/1/1 1/2/1 3/3/1 4/4/1
f 7/5/2 5/6/2 6/7/2 8/8/2
f 5/9/3 1/10/3 2/11/3 6/12/3
f 15/13/4 13/14/4 14/15/4 16/16/4
f 3/17/5 1/18/5 5/19/5 7/20/5
f 6/21/6 2/22/6 4/23/6 8/24/6
f 9/25/7 11/26/7 4/27/7 3/28/7
f 10/29/8 9/30/8 3/31/8 7/32/8
f 12/33/9 10/34/9 7/35/9 8/36/9
f 11/37/10 12/38/10 8/39/10 4/40/10
f 13/41/11 15/42/11 11/43/11 9/44/11
f 14/45/12 13/46/12 9/47/12 10/48/12
f 16/49/13 14/50/13 10/51/13 12/52/13
f 15/53/14 16/54/14 12/55/14 11/56/14

View file

@ -1,25 +0,0 @@
[remap]
importer="wavefront_obj"
importer_version=1
type="Mesh"
uid="uid://chmunyftysku4"
path="res://.godot/imported/Box.obj-e0524d1e4558195f13a860847aa116e6.mesh"
[deps]
files=["res://.godot/imported/Box.obj-e0524d1e4558195f13a860847aa116e6.mesh"]
source_file="res://3D/BlockbenchModels/Box/Box.obj"
dest_files=["res://.godot/imported/Box.obj-e0524d1e4558195f13a860847aa116e6.mesh", "res://.godot/imported/Box.obj-e0524d1e4558195f13a860847aa116e6.mesh"]
[params]
generate_tangents=true
generate_lods=true
generate_shadow_mesh=true
generate_lightmap_uv2=false
generate_lightmap_uv2_texel_size=0.2
scale_mesh=Vector3(1, 1, 1)
offset_mesh=Vector3(0, 0, 0)
force_disable_mesh_compression=false

File diff suppressed because one or more lines are too long

View file

@ -1,42 +0,0 @@
[remap]
importer="scene"
importer_version=1
type="PackedScene"
uid="uid://dccywtfbs7h8o"
path="res://.godot/imported/Box_Blue.gltf-495d3958fad67997fcee095f2ecaa0cf.scn"
[deps]
source_file="res://3D/BlockbenchModels/Box/BoxTallBlue/Box_Blue.gltf"
dest_files=["res://.godot/imported/Box_Blue.gltf-495d3958fad67997fcee095f2ecaa0cf.scn"]
[params]
nodes/root_type=""
nodes/root_name=""
nodes/root_script=null
nodes/apply_root_scale=true
nodes/root_scale=1.0
nodes/import_as_skeleton_bones=false
nodes/use_name_suffixes=true
nodes/use_node_type_suffixes=true
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=""
materials/extract=0
materials/extract_format=0
materials/extract_path=""
_subresources={}
gltf/naming_version=2
gltf/embedded_image_handling=1

Binary file not shown.

View file

@ -1,43 +0,0 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bgk6mbtnp6d7h"
path="res://.godot/imported/Box_Blue_0.png-78a8eea90b8b47f70752ba7813cb08aa.ctex"
metadata={
"vram_texture": false
}
generator_parameters={
"md5": "29ec1695abcb89f19b86869589f0dcde"
}
[deps]
source_file="res://3D/BlockbenchModels/Box/BoxTallBlue/Box_Blue_0.png"
dest_files=["res://.godot/imported/Box_Blue_0.png-78a8eea90b8b47f70752ba7813cb08aa.ctex"]
[params]
compress/mode=3
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=0

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -1,42 +0,0 @@
[remap]
importer="scene"
importer_version=1
type="PackedScene"
uid="uid://ry8fwoju3alh"
path="res://.godot/imported/Box_Tall_Blue.gltf-32c95a0a3f759faa6c65210991a4376b.scn"
[deps]
source_file="res://3D/BlockbenchModels/Box/BoxTallBlue/Box_Tall_Blue.gltf"
dest_files=["res://.godot/imported/Box_Tall_Blue.gltf-32c95a0a3f759faa6c65210991a4376b.scn"]
[params]
nodes/root_type=""
nodes/root_name=""
nodes/root_script=null
nodes/apply_root_scale=true
nodes/root_scale=1.0
nodes/import_as_skeleton_bones=false
nodes/use_name_suffixes=true
nodes/use_node_type_suffixes=true
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=""
materials/extract=0
materials/extract_format=0
materials/extract_path=""
_subresources={}
gltf/naming_version=2
gltf/embedded_image_handling=1

Binary file not shown.

View file

@ -1,43 +0,0 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://vfs5f07o0vgg"
path="res://.godot/imported/Box_Tall_Blue_0.png-4245332dc40657073db136295eb1d4c3.ctex"
metadata={
"vram_texture": false
}
generator_parameters={
"md5": "e364f7ef729ee877b8a93d8b0ae47b6b"
}
[deps]
source_file="res://3D/BlockbenchModels/Box/BoxTallBlue/Box_Tall_Blue_0.png"
dest_files=["res://.godot/imported/Box_Tall_Blue_0.png-4245332dc40657073db136295eb1d4c3.ctex"]
[params]
compress/mode=3
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=0

Binary file not shown.

View file

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

BIN
3D/BlockbenchModels/Box/Box_0.png (Stored with Git LFS)

Binary file not shown.

View file

@ -1,37 +0,0 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://8xxhvkehdmgp"
path="res://.godot/imported/Box_0.png-16e904c8b4fea3abf3deb1f5f1c0f41b.ctex"
metadata={
"vram_texture": false
}
generator_parameters={
"md5": "3c7223e014839eff91798be32e519633"
}
[deps]
source_file="res://3D/BlockbenchModels/Box/Box_0.png"
dest_files=["res://.godot/imported/Box_0.png-16e904c8b4fea3abf3deb1f5f1c0f41b.ctex"]
[params]
compress/mode=3
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

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -1,42 +0,0 @@
[remap]
importer="scene"
importer_version=1
type="PackedScene"
uid="uid://hxn4awevjyui"
path="res://.godot/imported/Box_Blue.gltf-54d451c1a8fa0b1dd9586f64156f1631.scn"
[deps]
source_file="res://3D/BlockbenchModels/Box/Box_Blue.gltf"
dest_files=["res://.godot/imported/Box_Blue.gltf-54d451c1a8fa0b1dd9586f64156f1631.scn"]
[params]
nodes/root_type=""
nodes/root_name=""
nodes/root_script=null
nodes/apply_root_scale=true
nodes/root_scale=1.0
nodes/import_as_skeleton_bones=false
nodes/use_name_suffixes=true
nodes/use_node_type_suffixes=true
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=""
materials/extract=0
materials/extract_format=0
materials/extract_path=""
_subresources={}
gltf/naming_version=1
gltf/embedded_image_handling=1

BIN
3D/BlockbenchModels/Box/Box_Blue_0.png (Stored with Git LFS)

Binary file not shown.

View file

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

Binary file not shown.

View file

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

Binary file not shown.

View file

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

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -1,42 +0,0 @@
[remap]
importer="scene"
importer_version=1
type="PackedScene"
uid="uid://c5k6rsawax3gf"
path="res://.godot/imported/Box_Green.gltf-d92b6ccf667f98b3f059cab87ca0ae98.scn"
[deps]
source_file="res://3D/BlockbenchModels/Box/Box_Green.gltf"
dest_files=["res://.godot/imported/Box_Green.gltf-d92b6ccf667f98b3f059cab87ca0ae98.scn"]
[params]
nodes/root_type=""
nodes/root_name=""
nodes/root_script=null
nodes/apply_root_scale=true
nodes/root_scale=1.0
nodes/import_as_skeleton_bones=false
nodes/use_name_suffixes=true
nodes/use_node_type_suffixes=true
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=""
materials/extract=0
materials/extract_format=0
materials/extract_path=""
_subresources={}
gltf/naming_version=1
gltf/embedded_image_handling=1

BIN
3D/BlockbenchModels/Box/Box_Green_0.png (Stored with Git LFS)

Binary file not shown.

View file

@ -1,43 +0,0 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://b0m3l0ukdgfg0"
path="res://.godot/imported/Box_Green_0.png-8d2d40e999759ea7db88464a746675a6.ctex"
metadata={
"vram_texture": false
}
generator_parameters={
"md5": "95c7d16ac49a03d5cc1d5c12530352c7"
}
[deps]
source_file="res://3D/BlockbenchModels/Box/Box_Green_0.png"
dest_files=["res://.godot/imported/Box_Green_0.png-8d2d40e999759ea7db88464a746675a6.ctex"]
[params]
compress/mode=3
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=0

Binary file not shown.

View file

@ -1,34 +0,0 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bfbnvdgjqxdlg"
path="res://.godot/imported/Box_Green_Texture.png-6c4387cc2700632263cf8f22b455ae20.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://3D/BlockbenchModels/Box/Box_Green_Texture.png"
dest_files=["res://.godot/imported/Box_Green_Texture.png-6c4387cc2700632263cf8f22b455ae20.ctex"]
[params]
compress/mode=3
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

Binary file not shown.

View file

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

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -1,37 +0,0 @@
[remap]
importer="scene"
importer_version=1
type="PackedScene"
uid="uid://cllgj3yoqvpko"
path="res://.godot/imported/Box_Large_Red.gltf-e8fec7230b1a9b5d00d7492afb177875.scn"
[deps]
source_file="res://3D/BlockbenchModels/Box/Box_Large_Red.gltf"
dest_files=["res://.godot/imported/Box_Large_Red.gltf-e8fec7230b1a9b5d00d7492afb177875.scn"]
[params]
nodes/root_type=""
nodes/root_name=""
nodes/apply_root_scale=true
nodes/root_scale=1.0
nodes/import_as_skeleton_bones=false
nodes/use_node_type_suffixes=true
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=1
gltf/embedded_image_handling=1

Binary file not shown.

View file

@ -1,37 +0,0 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dey4646bo35tm"
path="res://.godot/imported/Box_Large_Red_0.png-228321d8bfff30de603a3379f0bc6a95.ctex"
metadata={
"vram_texture": false
}
generator_parameters={
"md5": "bf6261013480a4101e174d62e61702d4"
}
[deps]
source_file="res://3D/BlockbenchModels/Box/Box_Large_Red_0.png"
dest_files=["res://.godot/imported/Box_Large_Red_0.png-228321d8bfff30de603a3379f0bc6a95.ctex"]
[params]
compress/mode=3
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

Binary file not shown.

View file

@ -1,34 +0,0 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dns6lcd4b4c80"
path="res://.godot/imported/Box_Large_Red_Texture.png-92ae747764b49315ed777583a6e6f937.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://3D/BlockbenchModels/Box/Box_Large_Red_Texture.png"
dest_files=["res://.godot/imported/Box_Large_Red_Texture.png-92ae747764b49315ed777583a6e6f937.ctex"]
[params]
compress/mode=3
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

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -1,37 +0,0 @@
[remap]
importer="scene"
importer_version=1
type="PackedScene"
uid="uid://ninnis3a3jbn"
path="res://.godot/imported/Box_Red.gltf-b68ef67925b8c081e760b92a212eece0.scn"
[deps]
source_file="res://3D/BlockbenchModels/Box/Box_Red.gltf"
dest_files=["res://.godot/imported/Box_Red.gltf-b68ef67925b8c081e760b92a212eece0.scn"]
[params]
nodes/root_type=""
nodes/root_name=""
nodes/apply_root_scale=true
nodes/root_scale=1.0
nodes/import_as_skeleton_bones=false
nodes/use_node_type_suffixes=true
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=1
gltf/embedded_image_handling=1

BIN
3D/BlockbenchModels/Box/Box_Red_0.png (Stored with Git LFS)

Binary file not shown.

View file

@ -1,37 +0,0 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://donuexxxqqqwg"
path="res://.godot/imported/Box_Red_0.png-c8be78b9e87b2be2c49de38b8b019ae4.ctex"
metadata={
"vram_texture": false
}
generator_parameters={
"md5": "004875bf4fbdf162dc54d7876fda8e5d"
}
[deps]
source_file="res://3D/BlockbenchModels/Box/Box_Red_0.png"
dest_files=["res://.godot/imported/Box_Red_0.png-c8be78b9e87b2be2c49de38b8b019ae4.ctex"]
[params]
compress/mode=3
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

Binary file not shown.

View file

@ -1,34 +0,0 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://27lshwwdi5yl"
path="res://.godot/imported/Box_Red_Texture.png-abf7aefe03c6dbae51b62c4257b89cfa.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://3D/BlockbenchModels/Box/Box_Red_Texture.png"
dest_files=["res://.godot/imported/Box_Red_Texture.png-abf7aefe03c6dbae51b62c4257b89cfa.ctex"]
[params]
compress/mode=3
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

Binary file not shown.

View file

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

BIN
3D/BlockbenchModels/Box/Box_Texture.png (Stored with Git LFS)

Binary file not shown.

View file

@ -1,34 +0,0 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://2p0yrweuvfy7"
path="res://.godot/imported/Box_Texture.png-49c2203079a441f753bfb9b551ce5861.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://3D/BlockbenchModels/Box/Box_Texture.png"
dest_files=["res://.godot/imported/Box_Texture.png-49c2203079a441f753bfb9b551ce5861.ctex"]
[params]
compress/mode=3
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

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -1,42 +0,0 @@
[remap]
importer="scene"
importer_version=1
type="PackedScene"
uid="uid://cpwolnoq46foq"
path="res://.godot/imported/Box_Yellow.gltf-d7ebe7269c2aff0af0de300fb848379a.scn"
[deps]
source_file="res://3D/BlockbenchModels/Box/Box_Yellow.gltf"
dest_files=["res://.godot/imported/Box_Yellow.gltf-d7ebe7269c2aff0af0de300fb848379a.scn"]
[params]
nodes/root_type=""
nodes/root_name=""
nodes/root_script=null
nodes/apply_root_scale=true
nodes/root_scale=1.0
nodes/import_as_skeleton_bones=false
nodes/use_name_suffixes=true
nodes/use_node_type_suffixes=true
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=""
materials/extract=0
materials/extract_format=0
materials/extract_path=""
_subresources={}
gltf/naming_version=1
gltf/embedded_image_handling=1

BIN
3D/BlockbenchModels/Box/Box_Yellow_0.png (Stored with Git LFS)

Binary file not shown.

View file

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

Binary file not shown.

View file

@ -1,34 +0,0 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dshymadm0gl58"
path="res://.godot/imported/Box_Yellow_Texture.png-dc0a4e1d9dd3ce23f9b11cf7637d5cf9.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://3D/BlockbenchModels/Box/Box_Yellow_Texture.png"
dest_files=["res://.godot/imported/Box_Yellow_Texture.png-dc0a4e1d9dd3ce23f9b11cf7637d5cf9.ctex"]
[params]
compress/mode=3
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

Binary file not shown.

View file

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

File diff suppressed because one or more lines are too long

Binary file not shown.

View file

@ -1,34 +0,0 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://l8h7vh0iv0g7"
path="res://.godot/imported/Metal_Box_Texture.png-0029649f45f2d8b0d265c0648f98124f.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://3D/BlockbenchModels/Box/Metal_Box_Texture.png"
dest_files=["res://.godot/imported/Metal_Box_Texture.png-0029649f45f2d8b0d265c0648f98124f.ctex"]
[params]
compress/mode=3
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

Some files were not shown because too many files have changed in this diff Show more