parent
791b1557c7
commit
86db6865b7
144 changed files with 3582 additions and 2 deletions
@ -0,0 +1,165 @@ |
||||
# Weapon System Documentation |
||||
|
||||
## Overview |
||||
|
||||
The weapon system is a modular, multiplayer-friendly system that allows players to: |
||||
- Pick up weapons from the world |
||||
- Equip weapons to their right hand (WeaponPoint bone attachment) |
||||
- Drop equipped weapons |
||||
- Attack with weapon-specific stats (damage, range, cooldown) |
||||
|
||||
## Architecture |
||||
|
||||
### Core Components |
||||
|
||||
1. **WeaponData** (`level/scripts/weapon_data.gd`) - Resource |
||||
- Stores weapon stats: name, damage, attack_range, attack_cooldown |
||||
- References a mesh scene for visuals |
||||
- Reusable across multiple weapon instances |
||||
|
||||
2. **BaseWeapon** (`level/scripts/base_weapon.gd`) - Node3D |
||||
- Equipped weapon attached to player's hand |
||||
- Handles attack logic and damage application |
||||
- Networked properly for multiplayer |
||||
|
||||
3. **WorldWeapon** (`level/scripts/world_weapon.gd`) - RigidBody3D |
||||
- Physics-based pickup object in the world |
||||
- Can be picked up by players |
||||
- Automatically creates collision and pickup area |
||||
|
||||
## Creating New Weapons |
||||
|
||||
### Step 1: Create a Mesh Scene |
||||
|
||||
Create a scene with your weapon's 3D model: |
||||
``` |
||||
[Node3D] - WeaponMesh |
||||
└─ [MeshInstance3D] - Your mesh here |
||||
``` |
||||
|
||||
Example: `level/scenes/weapons/sword_mesh.tscn` |
||||
|
||||
### Step 2: Create a WeaponData Resource |
||||
|
||||
Create a `.tres` file in `level/resources/`: |
||||
|
||||
```tres |
||||
[gd_resource type="Resource" script_class="WeaponData" load_steps=3 format=3] |
||||
|
||||
[ext_resource type="Script" path="res://level/scripts/weapon_data.gd" id="1"] |
||||
[ext_resource type="PackedScene" path="res://level/scenes/weapons/your_mesh.tscn" id="2"] |
||||
|
||||
[resource] |
||||
script = ExtResource("1") |
||||
weapon_name = "Your Weapon Name" |
||||
description = "Weapon description" |
||||
damage = 15.0 |
||||
attack_range = 3.5 |
||||
attack_cooldown = 0.6 |
||||
attack_animation = "Attack1" |
||||
mesh_scene = ExtResource("2") |
||||
pickup_radius = 1.5 |
||||
weight = 2.0 |
||||
``` |
||||
|
||||
### Step 3: Create a WorldWeapon Scene (Optional) |
||||
|
||||
If you want to place weapons in the level: |
||||
|
||||
``` |
||||
[RigidBody3D] - WorldWeaponYourWeapon |
||||
└─ [CollisionShape3D] - Approximate weapon shape |
||||
``` |
||||
|
||||
Set the script to `world_weapon.gd` and assign your WeaponData resource. |
||||
|
||||
Example: `level/scenes/weapons/world_weapon_sword.tscn` |
||||
|
||||
## Testing |
||||
|
||||
### In Godot Editor |
||||
|
||||
1. Open `level/scenes/level.tscn` |
||||
2. Drag a WorldWeapon scene (e.g., `world_weapon_sword.tscn`) into the level |
||||
3. Position it somewhere visible |
||||
4. Run the game (F5) |
||||
|
||||
### Controls |
||||
|
||||
- **E** - Pick up weapon (when near one) or drop equipped weapon |
||||
- **Left Mouse** - Attack with equipped weapon (or unarmed if none) |
||||
|
||||
### Multiplayer Testing |
||||
|
||||
1. Run the game and click "Host" |
||||
2. Run another instance and click "Join" |
||||
3. Both players can: |
||||
- Pick up weapons |
||||
- Attack each other with weapons |
||||
- Drop weapons (creates a WorldWeapon others can pick up) |
||||
|
||||
## How It Works |
||||
|
||||
### Pickup Flow |
||||
|
||||
1. WorldWeapon creates an Area3D with pickup radius |
||||
2. Player has a WeaponPickupArea that detects nearby WorldWeapons |
||||
3. When player presses "E" near a weapon: |
||||
- Client calls `try_pickup()` via RPC to server |
||||
- Server validates distance and availability |
||||
- Server tells player to `equip_weapon_from_world()` |
||||
- Server removes the WorldWeapon from scene |
||||
- All clients see the weapon disappear and equipped on player |
||||
|
||||
### Attack Flow |
||||
|
||||
1. Player presses attack button |
||||
2. Player checks if `equipped_weapon` exists |
||||
3. If yes, calls `equipped_weapon.perform_attack()` |
||||
4. Weapon checks cooldown and attack range |
||||
5. Weapon finds targets using physics query |
||||
6. Weapon sends damage request to server |
||||
7. Server validates and applies damage via BaseUnit system |
||||
|
||||
### Drop Flow |
||||
|
||||
1. Player presses "E" while holding a weapon |
||||
2. Player calls `drop_weapon()` RPC |
||||
3. Server spawns a WorldWeapon at player's position |
||||
4. All clients see weapon unequip and appear in world |
||||
5. Weapon becomes a physics object that can be picked up |
||||
|
||||
## Physics Layers |
||||
|
||||
- **Layer 1** (player) - Player collisions |
||||
- **Layer 2** (world) - Environment collisions |
||||
- **Layer 3** (weapon) - Weapon pickup objects |
||||
|
||||
WorldWeapons: |
||||
- `collision_layer = 4` (layer 3) |
||||
- `collision_mask = 2` (collides with world) |
||||
|
||||
Player WeaponPickupArea: |
||||
- `collision_mask = 4` (detects layer 3) |
||||
|
||||
## Example Weapons |
||||
|
||||
### Iron Sword |
||||
- **Damage**: 15 |
||||
- **Range**: 3.5m |
||||
- **Cooldown**: 0.6s |
||||
- **Resource**: `level/resources/weapon_sword.tres` |
||||
|
||||
### Wooden Shield |
||||
- **Damage**: 8 |
||||
- **Range**: 2.5m |
||||
- **Cooldown**: 0.8s |
||||
- **Resource**: `level/resources/weapon_shield.tres` |
||||
|
||||
## Notes |
||||
|
||||
- All weapon spawning/pickup is server-authoritative |
||||
- Weapon stats are synced via WeaponData resource |
||||
- Meshes are instantiated locally on each client |
||||
- The system supports any number of weapon types |
||||
- You can extend BaseWeapon for special weapon behaviors (e.g., ranged weapons, magic weapons) |
||||
Binary file not shown.
@ -0,0 +1,44 @@ |
||||
[remap] |
||||
|
||||
importer="scene" |
||||
importer_version=1 |
||||
type="PackedScene" |
||||
uid="uid://0o7wp2i34v8j" |
||||
path="res://.godot/imported/Axe.fbx-a79bce4c20514ebcd15816620402d582.scn" |
||||
|
||||
[deps] |
||||
|
||||
source_file="res://assets/Objects/Low Poly Medieval Weapons/Axes/Axe.fbx" |
||||
dest_files=["res://.godot/imported/Axe.fbx-a79bce4c20514ebcd15816620402d582.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=true |
||||
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={} |
||||
fbx/importer=0 |
||||
fbx/allow_geometry_helper_nodes=false |
||||
fbx/embedded_image_handling=1 |
||||
fbx/naming_version=2 |
||||
Binary file not shown.
@ -0,0 +1,44 @@ |
||||
[remap] |
||||
|
||||
importer="scene" |
||||
importer_version=1 |
||||
type="PackedScene" |
||||
uid="uid://bvwwj6ko81kk1" |
||||
path="res://.godot/imported/Bardiche.fbx-c5f0cfa1c5e8b128ec3278fcb6ba8356.scn" |
||||
|
||||
[deps] |
||||
|
||||
source_file="res://assets/Objects/Low Poly Medieval Weapons/Axes/Bardiche.fbx" |
||||
dest_files=["res://.godot/imported/Bardiche.fbx-c5f0cfa1c5e8b128ec3278fcb6ba8356.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=true |
||||
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={} |
||||
fbx/importer=0 |
||||
fbx/allow_geometry_helper_nodes=false |
||||
fbx/embedded_image_handling=1 |
||||
fbx/naming_version=2 |
||||
Binary file not shown.
@ -0,0 +1,44 @@ |
||||
[remap] |
||||
|
||||
importer="scene" |
||||
importer_version=1 |
||||
type="PackedScene" |
||||
uid="uid://cuslijt4ktm2r" |
||||
path="res://.godot/imported/Battle Axe.fbx-06e7ac5ce1dffa84e05bf780328d8c04.scn" |
||||
|
||||
[deps] |
||||
|
||||
source_file="res://assets/Objects/Low Poly Medieval Weapons/Axes/Battle Axe.fbx" |
||||
dest_files=["res://.godot/imported/Battle Axe.fbx-06e7ac5ce1dffa84e05bf780328d8c04.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=true |
||||
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={} |
||||
fbx/importer=0 |
||||
fbx/allow_geometry_helper_nodes=false |
||||
fbx/embedded_image_handling=1 |
||||
fbx/naming_version=2 |
||||
Binary file not shown.
@ -0,0 +1,44 @@ |
||||
[remap] |
||||
|
||||
importer="scene" |
||||
importer_version=1 |
||||
type="PackedScene" |
||||
uid="uid://bjvvcg8acjfr7" |
||||
path="res://.godot/imported/Halberd.fbx-4a586c1aec26ddcdf5d2fa638fb319e9.scn" |
||||
|
||||
[deps] |
||||
|
||||
source_file="res://assets/Objects/Low Poly Medieval Weapons/Axes/Halberd.fbx" |
||||
dest_files=["res://.godot/imported/Halberd.fbx-4a586c1aec26ddcdf5d2fa638fb319e9.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=true |
||||
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={} |
||||
fbx/importer=0 |
||||
fbx/allow_geometry_helper_nodes=false |
||||
fbx/embedded_image_handling=1 |
||||
fbx/naming_version=2 |
||||
Binary file not shown.
@ -0,0 +1,44 @@ |
||||
[remap] |
||||
|
||||
importer="scene" |
||||
importer_version=1 |
||||
type="PackedScene" |
||||
uid="uid://ckgj7l5e2gwb3" |
||||
path="res://.godot/imported/Two handed Axe.fbx-54039b153e742bbdd3843571307e11ac.scn" |
||||
|
||||
[deps] |
||||
|
||||
source_file="res://assets/Objects/Low Poly Medieval Weapons/Axes/Two handed Axe.fbx" |
||||
dest_files=["res://.godot/imported/Two handed Axe.fbx-54039b153e742bbdd3843571307e11ac.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=true |
||||
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={} |
||||
fbx/importer=0 |
||||
fbx/allow_geometry_helper_nodes=false |
||||
fbx/embedded_image_handling=1 |
||||
fbx/naming_version=2 |
||||
Binary file not shown.
@ -0,0 +1,44 @@ |
||||
[remap] |
||||
|
||||
importer="scene" |
||||
importer_version=1 |
||||
type="PackedScene" |
||||
uid="uid://c2488oo6qq0nm" |
||||
path="res://.godot/imported/Arrow.fbx-040f5da1dca5d54113511381e1d5cfd7.scn" |
||||
|
||||
[deps] |
||||
|
||||
source_file="res://assets/Objects/Low Poly Medieval Weapons/Bows/Arrow.fbx" |
||||
dest_files=["res://.godot/imported/Arrow.fbx-040f5da1dca5d54113511381e1d5cfd7.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=true |
||||
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={} |
||||
fbx/importer=0 |
||||
fbx/allow_geometry_helper_nodes=false |
||||
fbx/embedded_image_handling=1 |
||||
fbx/naming_version=2 |
||||
Binary file not shown.
@ -0,0 +1,44 @@ |
||||
[remap] |
||||
|
||||
importer="scene" |
||||
importer_version=1 |
||||
type="PackedScene" |
||||
uid="uid://227e2fn5dtgc" |
||||
path="res://.godot/imported/Bolt.fbx-8526fc214699697432fb504686299a64.scn" |
||||
|
||||
[deps] |
||||
|
||||
source_file="res://assets/Objects/Low Poly Medieval Weapons/Bows/Bolt.fbx" |
||||
dest_files=["res://.godot/imported/Bolt.fbx-8526fc214699697432fb504686299a64.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=true |
||||
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={} |
||||
fbx/importer=0 |
||||
fbx/allow_geometry_helper_nodes=false |
||||
fbx/embedded_image_handling=1 |
||||
fbx/naming_version=2 |
||||
Binary file not shown.
@ -0,0 +1,44 @@ |
||||
[remap] |
||||
|
||||
importer="scene" |
||||
importer_version=1 |
||||
type="PackedScene" |
||||
uid="uid://xo0x1xio1cwv" |
||||
path="res://.godot/imported/Crossbow.fbx-630e6d77b03e317c52a5294a5586cb05.scn" |
||||
|
||||
[deps] |
||||
|
||||
source_file="res://assets/Objects/Low Poly Medieval Weapons/Bows/Crossbow.fbx" |
||||
dest_files=["res://.godot/imported/Crossbow.fbx-630e6d77b03e317c52a5294a5586cb05.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=true |
||||
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={} |
||||
fbx/importer=0 |
||||
fbx/allow_geometry_helper_nodes=false |
||||
fbx/embedded_image_handling=1 |
||||
fbx/naming_version=2 |
||||
Binary file not shown.
@ -0,0 +1,44 @@ |
||||
[remap] |
||||
|
||||
importer="scene" |
||||
importer_version=1 |
||||
type="PackedScene" |
||||
uid="uid://bs6cyak3yqhia" |
||||
path="res://.godot/imported/Long Bow.fbx-e435e6ed9a2a720205d67db17174c770.scn" |
||||
|
||||
[deps] |
||||
|
||||
source_file="res://assets/Objects/Low Poly Medieval Weapons/Bows/Long Bow.fbx" |
||||
dest_files=["res://.godot/imported/Long Bow.fbx-e435e6ed9a2a720205d67db17174c770.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=true |
||||
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={} |
||||
fbx/importer=0 |
||||
fbx/allow_geometry_helper_nodes=false |
||||
fbx/embedded_image_handling=1 |
||||
fbx/naming_version=2 |
||||
Binary file not shown.
@ -0,0 +1,44 @@ |
||||
[remap] |
||||
|
||||
importer="scene" |
||||
importer_version=1 |
||||
type="PackedScene" |
||||
uid="uid://bijs1byktdp2d" |
||||
path="res://.godot/imported/Quiver With Arrows.fbx-3754d0fcfabcde59bed8b3da04601dde.scn" |
||||
|
||||
[deps] |
||||
|
||||
source_file="res://assets/Objects/Low Poly Medieval Weapons/Bows/Quiver With Arrows.fbx" |
||||
dest_files=["res://.godot/imported/Quiver With Arrows.fbx-3754d0fcfabcde59bed8b3da04601dde.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=true |
||||
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={} |
||||
fbx/importer=0 |
||||
fbx/allow_geometry_helper_nodes=false |
||||
fbx/embedded_image_handling=1 |
||||
fbx/naming_version=2 |
||||
Binary file not shown.
@ -0,0 +1,44 @@ |
||||
[remap] |
||||
|
||||
importer="scene" |
||||
importer_version=1 |
||||
type="PackedScene" |
||||
uid="uid://dvy025ry68ueh" |
||||
path="res://.godot/imported/Quiver.fbx-8ef5c46676ff6dcaadea22842e2aa79e.scn" |
||||
|
||||
[deps] |
||||
|
||||
source_file="res://assets/Objects/Low Poly Medieval Weapons/Bows/Quiver.fbx" |
||||
dest_files=["res://.godot/imported/Quiver.fbx-8ef5c46676ff6dcaadea22842e2aa79e.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=true |
||||
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={} |
||||
fbx/importer=0 |
||||
fbx/allow_geometry_helper_nodes=false |
||||
fbx/embedded_image_handling=1 |
||||
fbx/naming_version=2 |
||||
Binary file not shown.
@ -0,0 +1,44 @@ |
||||
[remap] |
||||
|
||||
importer="scene" |
||||
importer_version=1 |
||||
type="PackedScene" |
||||
uid="uid://rgvbi8exiv6n" |
||||
path="res://.godot/imported/Recurve Bow.fbx-c480134cd8b1e84836029ea08aea011b.scn" |
||||
|
||||
[deps] |
||||
|
||||
source_file="res://assets/Objects/Low Poly Medieval Weapons/Bows/Recurve Bow.fbx" |
||||
dest_files=["res://.godot/imported/Recurve Bow.fbx-c480134cd8b1e84836029ea08aea011b.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=true |
||||
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={} |
||||
fbx/importer=0 |
||||
fbx/allow_geometry_helper_nodes=false |
||||
fbx/embedded_image_handling=1 |
||||
fbx/naming_version=2 |
||||
Binary file not shown.
@ -0,0 +1,44 @@ |
||||
[remap] |
||||
|
||||
importer="scene" |
||||
importer_version=1 |
||||
type="PackedScene" |
||||
uid="uid://cyc051yj64p0v" |
||||
path="res://.godot/imported/Pitchfork.fbx-cf87d0aad335f35f726ac4a792fae909.scn" |
||||
|
||||
[deps] |
||||
|
||||
source_file="res://assets/Objects/Low Poly Medieval Weapons/Farming/Pitchfork.fbx" |
||||
dest_files=["res://.godot/imported/Pitchfork.fbx-cf87d0aad335f35f726ac4a792fae909.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=true |
||||
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={} |
||||
fbx/importer=0 |
||||
fbx/allow_geometry_helper_nodes=false |
||||
fbx/embedded_image_handling=1 |
||||
fbx/naming_version=2 |
||||
Binary file not shown.
@ -0,0 +1,44 @@ |
||||
[remap] |
||||
|
||||
importer="scene" |
||||
importer_version=1 |
||||
type="PackedScene" |
||||
uid="uid://bn5gtm1i8rr81" |
||||
path="res://.godot/imported/Scythe.fbx-2379d1d4f0a29d2b0215e9d07536486d.scn" |
||||
|
||||
[deps] |
||||
|
||||
source_file="res://assets/Objects/Low Poly Medieval Weapons/Farming/Scythe.fbx" |
||||
dest_files=["res://.godot/imported/Scythe.fbx-2379d1d4f0a29d2b0215e9d07536486d.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=true |
||||
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={} |
||||
fbx/importer=0 |
||||
fbx/allow_geometry_helper_nodes=false |
||||
fbx/embedded_image_handling=1 |
||||
fbx/naming_version=2 |
||||
Binary file not shown.
@ -0,0 +1,44 @@ |
||||
[remap] |
||||
|
||||
importer="scene" |
||||
importer_version=1 |
||||
type="PackedScene" |
||||
uid="uid://dn0mfcldcndn1" |
||||
path="res://.godot/imported/Sickle.fbx-0f1dfd144de8fd5e4d89b9c9977424fc.scn" |
||||
|
||||
[deps] |
||||
|
||||
source_file="res://assets/Objects/Low Poly Medieval Weapons/Farming/Sickle.fbx" |
||||
dest_files=["res://.godot/imported/Sickle.fbx-0f1dfd144de8fd5e4d89b9c9977424fc.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=true |
||||
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={} |
||||
fbx/importer=0 |
||||
fbx/allow_geometry_helper_nodes=false |
||||
fbx/embedded_image_handling=1 |
||||
fbx/naming_version=2 |
||||
Binary file not shown.
@ -0,0 +1,44 @@ |
||||
[remap] |
||||
|
||||
importer="scene" |
||||
importer_version=1 |
||||
type="PackedScene" |
||||
uid="uid://btehxs8vg7clc" |
||||
path="res://.godot/imported/Hammer.fbx-ca31be4c29c55f0774757d8e57104dbe.scn" |
||||
|
||||
[deps] |
||||
|
||||
source_file="res://assets/Objects/Low Poly Medieval Weapons/Hammers/Hammer.fbx" |
||||
dest_files=["res://.godot/imported/Hammer.fbx-ca31be4c29c55f0774757d8e57104dbe.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=true |
||||
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={} |
||||
fbx/importer=0 |
||||
fbx/allow_geometry_helper_nodes=false |
||||
fbx/embedded_image_handling=1 |
||||
fbx/naming_version=2 |
||||
Binary file not shown.
@ -0,0 +1,44 @@ |
||||
[remap] |
||||
|
||||
importer="scene" |
||||
importer_version=1 |
||||
type="PackedScene" |
||||
uid="uid://bqhm0l7ouwxg6" |
||||
path="res://.godot/imported/Two-Handed Hammer.fbx-8200ec071910ea01b54c4dc96d6ff50a.scn" |
||||
|
||||
[deps] |
||||
|
||||
source_file="res://assets/Objects/Low Poly Medieval Weapons/Hammers/Two-Handed Hammer.fbx" |
||||
dest_files=["res://.godot/imported/Two-Handed Hammer.fbx-8200ec071910ea01b54c4dc96d6ff50a.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=true |
||||
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={} |
||||
fbx/importer=0 |
||||
fbx/allow_geometry_helper_nodes=false |
||||
fbx/embedded_image_handling=1 |
||||
fbx/naming_version=2 |
||||
Binary file not shown.
@ -0,0 +1,44 @@ |
||||
[remap] |
||||
|
||||
importer="scene" |
||||
importer_version=1 |
||||
type="PackedScene" |
||||
uid="uid://bwv6npugl54u4" |
||||
path="res://.godot/imported/Warhammer.fbx-3bbf6f1fbb9b2a4b57f1d28fd76dcbf6.scn" |
||||
|
||||
[deps] |
||||
|
||||
source_file="res://assets/Objects/Low Poly Medieval Weapons/Hammers/Warhammer.fbx" |
||||
dest_files=["res://.godot/imported/Warhammer.fbx-3bbf6f1fbb9b2a4b57f1d28fd76dcbf6.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=true |
||||
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={} |
||||
fbx/importer=0 |
||||
fbx/allow_geometry_helper_nodes=false |
||||
fbx/embedded_image_handling=1 |
||||
fbx/naming_version=2 |
||||
Binary file not shown.
@ -0,0 +1,44 @@ |
||||
[remap] |
||||
|
||||
importer="scene" |
||||
importer_version=1 |
||||
type="PackedScene" |
||||
uid="uid://pdlrft67c2x5" |
||||
path="res://.godot/imported/Flail.fbx-8b03965cef628780ce05a7b8a8915e0f.scn" |
||||
|
||||
[deps] |
||||
|
||||
source_file="res://assets/Objects/Low Poly Medieval Weapons/Maces/Flail.fbx" |
||||
dest_files=["res://.godot/imported/Flail.fbx-8b03965cef628780ce05a7b8a8915e0f.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=true |
||||
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={} |
||||
fbx/importer=0 |
||||
fbx/allow_geometry_helper_nodes=false |
||||
fbx/embedded_image_handling=1 |
||||
fbx/naming_version=2 |
||||
Binary file not shown.
@ -0,0 +1,44 @@ |
||||
[remap] |
||||
|
||||
importer="scene" |
||||
importer_version=1 |
||||
type="PackedScene" |
||||
uid="uid://1bse2w8x5pe2" |
||||
path="res://.godot/imported/Mace.fbx-a7ba3c0f84cd84583ef0f827aea0db8b.scn" |
||||
|
||||
[deps] |
||||
|
||||
source_file="res://assets/Objects/Low Poly Medieval Weapons/Maces/Mace.fbx" |
||||
dest_files=["res://.godot/imported/Mace.fbx-a7ba3c0f84cd84583ef0f827aea0db8b.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=true |
||||
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={} |
||||
fbx/importer=0 |
||||
fbx/allow_geometry_helper_nodes=false |
||||
fbx/embedded_image_handling=1 |
||||
fbx/naming_version=2 |
||||
Binary file not shown.
@ -0,0 +1,44 @@ |
||||
[remap] |
||||
|
||||
importer="scene" |
||||
importer_version=1 |
||||
type="PackedScene" |
||||
uid="uid://b2mbic3vmcsx0" |
||||
path="res://.godot/imported/Spiked Club.fbx-b91fd393f5eb99dc2a7a2458dcaff2d2.scn" |
||||
|
||||
[deps] |
||||
|
||||
source_file="res://assets/Objects/Low Poly Medieval Weapons/Maces/Spiked Club.fbx" |
||||
dest_files=["res://.godot/imported/Spiked Club.fbx-b91fd393f5eb99dc2a7a2458dcaff2d2.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=true |
||||
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={} |
||||
fbx/importer=0 |
||||
fbx/allow_geometry_helper_nodes=false |
||||
fbx/embedded_image_handling=1 |
||||
fbx/naming_version=2 |
||||
Binary file not shown.
@ -0,0 +1,44 @@ |
||||
[remap] |
||||
|
||||
importer="scene" |
||||
importer_version=1 |
||||
type="PackedScene" |
||||
uid="uid://rna8l7auvmtl" |
||||
path="res://.godot/imported/Spiked Mace.fbx-d66df79940ec52fa977157236dc15966.scn" |
||||
|
||||
[deps] |
||||
|
||||
source_file="res://assets/Objects/Low Poly Medieval Weapons/Maces/Spiked Mace.fbx" |
||||
dest_files=["res://.godot/imported/Spiked Mace.fbx-d66df79940ec52fa977157236dc15966.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=true |
||||
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={} |
||||
fbx/importer=0 |
||||
fbx/allow_geometry_helper_nodes=false |
||||
fbx/embedded_image_handling=1 |
||||
fbx/naming_version=2 |
||||
Binary file not shown.
@ -0,0 +1,44 @@ |
||||
[remap] |
||||
|
||||
importer="scene" |
||||
importer_version=1 |
||||
type="PackedScene" |
||||
uid="uid://d00ceuf4esrif" |
||||
path="res://.godot/imported/Open Spellbook.fbx-bc6e51c9b0d12d790ffdd440816c0660.scn" |
||||
|
||||
[deps] |
||||
|
||||
source_file="res://assets/Objects/Low Poly Medieval Weapons/Magic/Open Spellbook.fbx" |
||||
dest_files=["res://.godot/imported/Open Spellbook.fbx-bc6e51c9b0d12d790ffdd440816c0660.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=true |
||||
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={} |
||||
fbx/importer=0 |
||||
fbx/allow_geometry_helper_nodes=false |
||||
fbx/embedded_image_handling=1 |
||||
fbx/naming_version=2 |
||||
Binary file not shown.
@ -0,0 +1,44 @@ |
||||
[remap] |
||||
|
||||
importer="scene" |
||||
importer_version=1 |
||||
type="PackedScene" |
||||
uid="uid://cmtws2uauxf57" |
||||
path="res://.godot/imported/Potion A.fbx-a43dbff5e43ece0fb7cfc36cf2eba825.scn" |
||||
|
||||
[deps] |
||||
|
||||
source_file="res://assets/Objects/Low Poly Medieval Weapons/Magic/Potion A.fbx" |
||||
dest_files=["res://.godot/imported/Potion A.fbx-a43dbff5e43ece0fb7cfc36cf2eba825.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=true |
||||
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={} |
||||
fbx/importer=0 |
||||
fbx/allow_geometry_helper_nodes=false |
||||
fbx/embedded_image_handling=1 |
||||
fbx/naming_version=2 |
||||
Binary file not shown.
@ -0,0 +1,44 @@ |
||||
[remap] |
||||
|
||||
importer="scene" |
||||
importer_version=1 |
||||
type="PackedScene" |
||||
uid="uid://bdxndijccpk0t" |
||||
path="res://.godot/imported/Potion B.fbx-50e52bdf536fe1f89f838b00c96359b2.scn" |
||||
|
||||
[deps] |
||||
|
||||
source_file="res://assets/Objects/Low Poly Medieval Weapons/Magic/Potion B.fbx" |
||||
dest_files=["res://.godot/imported/Potion B.fbx-50e52bdf536fe1f89f838b00c96359b2.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=true |
||||
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={} |
||||
fbx/importer=0 |
||||
fbx/allow_geometry_helper_nodes=false |
||||
fbx/embedded_image_handling=1 |
||||
fbx/naming_version=2 |
||||
Binary file not shown.
@ -0,0 +1,44 @@ |
||||
[remap] |
||||
|
||||
importer="scene" |
||||
importer_version=1 |
||||
type="PackedScene" |
||||
uid="uid://dprdfihu21n07" |
||||
path="res://.godot/imported/Potion C.fbx-be9f960b2000c67ef01b5ced5b671784.scn" |
||||
|
||||
[deps] |
||||
|
||||
source_file="res://assets/Objects/Low Poly Medieval Weapons/Magic/Potion C.fbx" |
||||
dest_files=["res://.godot/imported/Potion C.fbx-be9f960b2000c67ef01b5ced5b671784.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=true |
||||
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={} |
||||
fbx/importer=0 |
||||
fbx/allow_geometry_helper_nodes=false |
||||
fbx/embedded_image_handling=1 |
||||
fbx/naming_version=2 |
||||
Binary file not shown.
@ -0,0 +1,44 @@ |
||||
[remap] |
||||
|
||||
importer="scene" |
||||
importer_version=1 |
||||
type="PackedScene" |
||||
uid="uid://bnnewhhfje5fd" |
||||
path="res://.godot/imported/Potion D.fbx-891832c3cb28d2c055367c9b12d59d18.scn" |
||||
|
||||
[deps] |
||||
|
||||
source_file="res://assets/Objects/Low Poly Medieval Weapons/Magic/Potion D.fbx" |
||||
dest_files=["res://.godot/imported/Potion D.fbx-891832c3cb28d2c055367c9b12d59d18.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=true |
||||
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={} |
||||
fbx/importer=0 |
||||
fbx/allow_geometry_helper_nodes=false |
||||
fbx/embedded_image_handling=1 |
||||
fbx/naming_version=2 |
||||
Binary file not shown.
@ -0,0 +1,44 @@ |
||||
[remap] |
||||
|
||||
importer="scene" |
||||
importer_version=1 |
||||
type="PackedScene" |
||||
uid="uid://cg644pgk0sx8b" |
||||
path="res://.godot/imported/Potion E.fbx-8f17e5f625d1ed05e3855c88c102e77d.scn" |
||||
|
||||
[deps] |
||||
|
||||
source_file="res://assets/Objects/Low Poly Medieval Weapons/Magic/Potion E.fbx" |
||||
dest_files=["res://.godot/imported/Potion E.fbx-8f17e5f625d1ed05e3855c88c102e77d.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=true |
||||
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={} |
||||
fbx/importer=0 |
||||
fbx/allow_geometry_helper_nodes=false |
||||
fbx/embedded_image_handling=1 |
||||
fbx/naming_version=2 |
||||
Binary file not shown.
@ -0,0 +1,44 @@ |
||||
[remap] |
||||
|
||||
importer="scene" |
||||
importer_version=1 |
||||
type="PackedScene" |
||||
uid="uid://xg3mn4gnc014" |
||||
path="res://.godot/imported/Potion F.fbx-3b2c157273355c82d8ce5957ce78438c.scn" |
||||
|
||||
[deps] |
||||
|
||||
source_file="res://assets/Objects/Low Poly Medieval Weapons/Magic/Potion F.fbx" |
||||
dest_files=["res://.godot/imported/Potion F.fbx-3b2c157273355c82d8ce5957ce78438c.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=true |
||||
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={} |
||||
fbx/importer=0 |
||||
fbx/allow_geometry_helper_nodes=false |
||||
fbx/embedded_image_handling=1 |
||||
fbx/naming_version=2 |
||||
Binary file not shown.
@ -0,0 +1,44 @@ |
||||
[remap] |
||||
|
||||
importer="scene" |
||||
importer_version=1 |
||||
type="PackedScene" |
||||
uid="uid://dem8v6m1n3vjg" |
||||
path="res://.godot/imported/Scroll.fbx-ae55f916fd5c63ab9012625d7f25ad2b.scn" |
||||
|
||||
[deps] |
||||
|
||||
source_file="res://assets/Objects/Low Poly Medieval Weapons/Magic/Scroll.fbx" |
||||
dest_files=["res://.godot/imported/Scroll.fbx-ae55f916fd5c63ab9012625d7f25ad2b.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=true |
||||
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={} |
||||
fbx/importer=0 |
||||
fbx/allow_geometry_helper_nodes=false |
||||
fbx/embedded_image_handling=1 |
||||
fbx/naming_version=2 |
||||
Binary file not shown.
@ -0,0 +1,44 @@ |
||||
[remap] |
||||
|
||||
importer="scene" |
||||
importer_version=1 |
||||
type="PackedScene" |
||||
uid="uid://bxkh8l50xltum" |
||||
path="res://.godot/imported/Spellbook.fbx-3c06b3778d2315fb9648dcfbcb7c0b66.scn" |
||||
|
||||
[deps] |
||||
|
||||
source_file="res://assets/Objects/Low Poly Medieval Weapons/Magic/Spellbook.fbx" |
||||
dest_files=["res://.godot/imported/Spellbook.fbx-3c06b3778d2315fb9648dcfbcb7c0b66.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=true |
||||
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={} |
||||
fbx/importer=0 |
||||
fbx/allow_geometry_helper_nodes=false |
||||
fbx/embedded_image_handling=1 |
||||
fbx/naming_version=2 |
||||
Binary file not shown.
@ -0,0 +1,44 @@ |
||||
[remap] |
||||
|
||||
importer="scene" |
||||
importer_version=1 |
||||
type="PackedScene" |
||||
uid="uid://bcwbt4ujsxxif" |
||||
path="res://.godot/imported/Broom.fbx-8c8fb956311f1550351dd4b96513bbc7.scn" |
||||
|
||||
[deps] |
||||
|
||||
source_file="res://assets/Objects/Low Poly Medieval Weapons/Miscellaneous/Broom.fbx" |
||||
dest_files=["res://.godot/imported/Broom.fbx-8c8fb956311f1550351dd4b96513bbc7.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=true |
||||
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={} |
||||
fbx/importer=0 |
||||
fbx/allow_geometry_helper_nodes=false |
||||
fbx/embedded_image_handling=1 |
||||
fbx/naming_version=2 |
||||
Binary file not shown.
@ -0,0 +1,44 @@ |
||||
[remap] |
||||
|
||||
importer="scene" |
||||
importer_version=1 |
||||
type="PackedScene" |
||||
uid="uid://byrebcd3jf1un" |
||||
path="res://.godot/imported/Mandolin.fbx-4020aeeb67c27c451e1a5a84d78e154a.scn" |
||||
|
||||
[deps] |
||||
|
||||
source_file="res://assets/Objects/Low Poly Medieval Weapons/Miscellaneous/Mandolin.fbx" |
||||
dest_files=["res://.godot/imported/Mandolin.fbx-4020aeeb67c27c451e1a5a84d78e154a.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=true |
||||
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={} |
||||
fbx/importer=0 |
||||
fbx/allow_geometry_helper_nodes=false |
||||
fbx/embedded_image_handling=1 |
||||
fbx/naming_version=2 |
||||
Binary file not shown.
@ -0,0 +1,44 @@ |
||||
[remap] |
||||
|
||||
importer="scene" |
||||
importer_version=1 |
||||
type="PackedScene" |
||||
uid="uid://sf7mcchik18g" |
||||
path="res://.godot/imported/Tankard.fbx-ad8b44fb92f6b8e590092f22259db55c.scn" |
||||
|
||||
[deps] |
||||
|
||||
source_file="res://assets/Objects/Low Poly Medieval Weapons/Miscellaneous/Tankard.fbx" |
||||
dest_files=["res://.godot/imported/Tankard.fbx-ad8b44fb92f6b8e590092f22259db55c.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=true |
||||
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={} |
||||
fbx/importer=0 |
||||
fbx/allow_geometry_helper_nodes=false |
||||
fbx/embedded_image_handling=1 |
||||
fbx/naming_version=2 |
||||
Binary file not shown.
@ -0,0 +1,44 @@ |
||||
[remap] |
||||
|
||||
importer="scene" |
||||
importer_version=1 |
||||
type="PackedScene" |
||||
uid="uid://cmskybe0ewvsv" |
||||
path="res://.godot/imported/Shield A.fbx-ae47219e1372b029abaa97938efbe8c2.scn" |
||||
|
||||
[deps] |
||||
|
||||
source_file="res://assets/Objects/Low Poly Medieval Weapons/Shields/Shield A.fbx" |
||||
dest_files=["res://.godot/imported/Shield A.fbx-ae47219e1372b029abaa97938efbe8c2.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=true |
||||
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={} |
||||
fbx/importer=0 |
||||
fbx/allow_geometry_helper_nodes=false |
||||
fbx/embedded_image_handling=1 |
||||
fbx/naming_version=2 |
||||
Binary file not shown.
@ -0,0 +1,44 @@ |
||||
[remap] |
||||
|
||||
importer="scene" |
||||
importer_version=1 |
||||
type="PackedScene" |
||||
uid="uid://w3juhjesjpha" |
||||
path="res://.godot/imported/Shield B.fbx-a80264004fdc7f0319f8dd5b050f288f.scn" |
||||
|
||||
[deps] |
||||
|
||||
source_file="res://assets/Objects/Low Poly Medieval Weapons/Shields/Shield B.fbx" |
||||
dest_files=["res://.godot/imported/Shield B.fbx-a80264004fdc7f0319f8dd5b050f288f.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=true |
||||
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={} |
||||
fbx/importer=0 |
||||
fbx/allow_geometry_helper_nodes=false |
||||
fbx/embedded_image_handling=1 |
||||
fbx/naming_version=2 |
||||
Binary file not shown.
@ -0,0 +1,44 @@ |
||||
[remap] |
||||
|
||||
importer="scene" |
||||
importer_version=1 |
||||
type="PackedScene" |
||||
uid="uid://i7adv7saue61" |
||||
path="res://.godot/imported/Shield C.fbx-ab47fbf681cffe48e837430e0b87384c.scn" |
||||
|
||||
[deps] |
||||
|
||||
source_file="res://assets/Objects/Low Poly Medieval Weapons/Shields/Shield C.fbx" |
||||
dest_files=["res://.godot/imported/Shield C.fbx-ab47fbf681cffe48e837430e0b87384c.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=true |
||||
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={} |
||||
fbx/importer=0 |
||||
fbx/allow_geometry_helper_nodes=false |
||||
fbx/embedded_image_handling=1 |
||||
fbx/naming_version=2 |
||||
Binary file not shown.
@ -0,0 +1,44 @@ |
||||
[remap] |
||||
|
||||
importer="scene" |
||||
importer_version=1 |
||||
type="PackedScene" |
||||
uid="uid://cpn50n58bd8yd" |
||||
path="res://.godot/imported/Shield D.fbx-b74a64d4c4adc6dac092df4a1a8a0272.scn" |
||||
|
||||
[deps] |
||||
|
||||
source_file="res://assets/Objects/Low Poly Medieval Weapons/Shields/Shield D.fbx" |
||||
dest_files=["res://.godot/imported/Shield D.fbx-b74a64d4c4adc6dac092df4a1a8a0272.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=true |
||||
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={} |
||||
fbx/importer=0 |
||||
fbx/allow_geometry_helper_nodes=false |
||||
fbx/embedded_image_handling=1 |
||||
fbx/naming_version=2 |
||||
Binary file not shown.
@ -0,0 +1,44 @@ |
||||
[remap] |
||||
|
||||
importer="scene" |
||||
importer_version=1 |
||||
type="PackedScene" |
||||
uid="uid://cob241yfucecm" |
||||
path="res://.godot/imported/Shield E.fbx-ca9b7586747d3ec0eded40d9025f51e1.scn" |
||||
|
||||
[deps] |
||||
|
||||
source_file="res://assets/Objects/Low Poly Medieval Weapons/Shields/Shield E.fbx" |
||||
dest_files=["res://.godot/imported/Shield E.fbx-ca9b7586747d3ec0eded40d9025f51e1.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=true |
||||
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={} |
||||
fbx/importer=0 |
||||
fbx/allow_geometry_helper_nodes=false |
||||
fbx/embedded_image_handling=1 |
||||
fbx/naming_version=2 |
||||
Binary file not shown.
@ -0,0 +1,44 @@ |
||||
[remap] |
||||
|
||||
importer="scene" |
||||
importer_version=1 |
||||
type="PackedScene" |
||||
uid="uid://b6scuy82w8ypu" |
||||
path="res://.godot/imported/Shield F.fbx-8e01dd254208efc2e4a732e92252ffd4.scn" |
||||
|
||||
[deps] |
||||
|
||||
source_file="res://assets/Objects/Low Poly Medieval Weapons/Shields/Shield F.fbx" |
||||
dest_files=["res://.godot/imported/Shield F.fbx-8e01dd254208efc2e4a732e92252ffd4.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=true |
||||
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={} |
||||
fbx/importer=0 |
||||
fbx/allow_geometry_helper_nodes=false |
||||
fbx/embedded_image_handling=1 |
||||
fbx/naming_version=2 |
||||
Binary file not shown.
@ -0,0 +1,44 @@ |
||||
[remap] |
||||
|
||||
importer="scene" |
||||
importer_version=1 |
||||
type="PackedScene" |
||||
uid="uid://bmdkuefxdt17n" |
||||
path="res://.godot/imported/Ballista Bolt.fbx-de1488f5b5d767dbb76d50cc4cffb9b3.scn" |
||||
|
||||
[deps] |
||||
|
||||
source_file="res://assets/Objects/Low Poly Medieval Weapons/Siege Engines/Ballista Bolt.fbx" |
||||
dest_files=["res://.godot/imported/Ballista Bolt.fbx-de1488f5b5d767dbb76d50cc4cffb9b3.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=true |
||||
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={} |
||||
fbx/importer=0 |
||||
fbx/allow_geometry_helper_nodes=false |
||||
fbx/embedded_image_handling=1 |
||||
fbx/naming_version=2 |
||||
Binary file not shown.
@ -0,0 +1,44 @@ |
||||
[remap] |
||||
|
||||
importer="scene" |
||||
importer_version=1 |
||||
type="PackedScene" |
||||
uid="uid://cyrrqhtq3kla8" |
||||
path="res://.godot/imported/Ballista.fbx-cec63278470917b59aa97eae6c1b62bb.scn" |
||||
|
||||
[deps] |
||||
|
||||
source_file="res://assets/Objects/Low Poly Medieval Weapons/Siege Engines/Ballista.fbx" |
||||
dest_files=["res://.godot/imported/Ballista.fbx-cec63278470917b59aa97eae6c1b62bb.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=true |
||||
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={} |
||||
fbx/importer=0 |
||||
fbx/allow_geometry_helper_nodes=false |
||||
fbx/embedded_image_handling=1 |
||||
fbx/naming_version=2 |
||||
Binary file not shown.
@ -0,0 +1,44 @@ |
||||
[remap] |
||||
|
||||
importer="scene" |
||||
importer_version=1 |
||||
type="PackedScene" |
||||
uid="uid://bsmgtcf4045qs" |
||||
path="res://.godot/imported/Battering Ram.fbx-2e34bc3057296b7bf6b4b4b129791597.scn" |
||||
|
||||
[deps] |
||||
|
||||
source_file="res://assets/Objects/Low Poly Medieval Weapons/Siege Engines/Battering Ram.fbx" |
||||
dest_files=["res://.godot/imported/Battering Ram.fbx-2e34bc3057296b7bf6b4b4b129791597.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=true |
||||
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={} |
||||
fbx/importer=0 |
||||
fbx/allow_geometry_helper_nodes=false |
||||
fbx/embedded_image_handling=1 |
||||
fbx/naming_version=2 |
||||
Binary file not shown.
@ -0,0 +1,44 @@ |
||||
[remap] |
||||
|
||||
importer="scene" |
||||
importer_version=1 |
||||
type="PackedScene" |
||||
uid="uid://q0f37y0ccqnl" |
||||
path="res://.godot/imported/Catapult Boulder.fbx-e2e876b2b9599644a14d57f1c8642540.scn" |
||||
|
||||
[deps] |
||||
|
||||
source_file="res://assets/Objects/Low Poly Medieval Weapons/Siege Engines/Catapult Boulder.fbx" |
||||
dest_files=["res://.godot/imported/Catapult Boulder.fbx-e2e876b2b9599644a14d57f1c8642540.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=true |
||||
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={} |
||||
fbx/importer=0 |
||||
fbx/allow_geometry_helper_nodes=false |
||||
fbx/embedded_image_handling=1 |
||||
fbx/naming_version=2 |
||||
Binary file not shown.
@ -0,0 +1,44 @@ |
||||
[remap] |
||||
|
||||
importer="scene" |
||||
importer_version=1 |
||||
type="PackedScene" |
||||
uid="uid://bcjj00uaghlim" |
||||
path="res://.godot/imported/Catapult.fbx-0800cd5526eae8fef2689b5e408db4d5.scn" |
||||
|
||||
[deps] |
||||
|
||||
source_file="res://assets/Objects/Low Poly Medieval Weapons/Siege Engines/Catapult.fbx" |
||||
dest_files=["res://.godot/imported/Catapult.fbx-0800cd5526eae8fef2689b5e408db4d5.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=true |
||||
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={} |
||||
fbx/importer=0 |
||||
fbx/allow_geometry_helper_nodes=false |
||||
fbx/embedded_image_handling=1 |
||||
fbx/naming_version=2 |
||||
Binary file not shown.
@ -0,0 +1,44 @@ |
||||
[remap] |
||||
|
||||
importer="scene" |
||||
importer_version=1 |
||||
type="PackedScene" |
||||
uid="uid://bs235yrgo4kgp" |
||||
path="res://.godot/imported/Seige Tower.fbx-52cf6d6044831bc6581145ae5669c5e7.scn" |
||||
|
||||
[deps] |
||||
|
||||
source_file="res://assets/Objects/Low Poly Medieval Weapons/Siege Engines/Seige Tower.fbx" |
||||
dest_files=["res://.godot/imported/Seige Tower.fbx-52cf6d6044831bc6581145ae5669c5e7.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=true |
||||
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={} |
||||
fbx/importer=0 |
||||
fbx/allow_geometry_helper_nodes=false |
||||
fbx/embedded_image_handling=1 |
||||
fbx/naming_version=2 |
||||
Binary file not shown.
@ -0,0 +1,44 @@ |
||||
[remap] |
||||
|
||||
importer="scene" |
||||
importer_version=1 |
||||
type="PackedScene" |
||||
uid="uid://bl373ou8ntuxu" |
||||
path="res://.godot/imported/Siege Tower.fbx-78f783d79d392fb01c3e02158a516280.scn" |
||||
|
||||
[deps] |
||||
|
||||
source_file="res://assets/Objects/Low Poly Medieval Weapons/Siege Engines/Siege Tower.fbx" |
||||
dest_files=["res://.godot/imported/Siege Tower.fbx-78f783d79d392fb01c3e02158a516280.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=true |
||||
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={} |
||||
fbx/importer=0 |
||||
fbx/allow_geometry_helper_nodes=false |
||||
fbx/embedded_image_handling=1 |
||||
fbx/naming_version=2 |
||||
Binary file not shown.
@ -0,0 +1,44 @@ |
||||
[remap] |
||||
|
||||
importer="scene" |
||||
importer_version=1 |
||||
type="PackedScene" |
||||
uid="uid://dnxhylis6uxv3" |
||||
path="res://.godot/imported/Trebuchet Rock.fbx-9f7f47c0e3e1d21bd29138864f546218.scn" |
||||
|
||||
[deps] |
||||
|
||||
source_file="res://assets/Objects/Low Poly Medieval Weapons/Siege Engines/Trebuchet Rock.fbx" |
||||
dest_files=["res://.godot/imported/Trebuchet Rock.fbx-9f7f47c0e3e1d21bd29138864f546218.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=true |
||||
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={} |
||||
fbx/importer=0 |
||||
fbx/allow_geometry_helper_nodes=false |
||||
fbx/embedded_image_handling=1 |
||||
fbx/naming_version=2 |
||||
Binary file not shown.
@ -0,0 +1,44 @@ |
||||
[remap] |
||||
|
||||
importer="scene" |
||||
importer_version=1 |
||||
type="PackedScene" |
||||
uid="uid://c2w0jo5v08to7" |
||||
path="res://.godot/imported/Trebuchet.fbx-4e278fd7004ed0e2e570f4916ca1b411.scn" |
||||
|
||||
[deps] |
||||
|
||||
source_file="res://assets/Objects/Low Poly Medieval Weapons/Siege Engines/Trebuchet.fbx" |
||||
dest_files=["res://.godot/imported/Trebuchet.fbx-4e278fd7004ed0e2e570f4916ca1b411.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=true |
||||
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={} |
||||
fbx/importer=0 |
||||
fbx/allow_geometry_helper_nodes=false |
||||
fbx/embedded_image_handling=1 |
||||
fbx/naming_version=2 |
||||
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue