among-eux

Game made in 1 day with flx
git clone git://git.vgx.fr/among-eux
Log | Files | Refs

commit 045f46e013b2207b1654de436e21693a825365a7
parent 0b9b8b650224f2b162c398dc15d580aa127fade0
Author: Léo Villeveygoux <l@vgx.fr>
Date:   Sun, 28 Aug 2022 16:59:26 +0200

First graphics

Diffstat:
MGuard.gd | 22+++++++++++++++++++++-
MLevel.gd | 2+-
MLevel.tscn | 366++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---------
MPresident.gd | 11+++++++++++
MPublic.gd | 13+++++++++++++
MPublic.tscn | 150++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-------
Aartsrc/garde du corp gauche.aseprite | 0
Aartsrc/garde du corp bas.aseprite | 0
Aartsrc/garde du corp droite.aseprite | 0
Aartsrc/garde du corps haut.aseprite | 0
Aartsrc/guard_sheet.aseprite | 0
Aartsrc/pnj1 bas.aseprite | 0
Aartsrc/pnj1 droite.aseprite | 0
Aartsrc/pnj1 gauche.aseprite | 0
Aartsrc/pnj1 haut.aseprite | 0
Aartsrc/pnj1_sheet.aseprite | 0
Aartsrc/president_sheet.aseprite | 0
Aartsrc/sprite president bas.aseprite | 0
Aartsrc/sprite president droite.aseprite | 0
Aartsrc/sprite president gauche.aseprite | 0
Aartsrc/sprite president haut.aseprite | 0
Aartsrc/sprite president.aseprite | 0
Agraphics/guard_sheet.png | 0
Agraphics/guard_sheet.png.import | 35+++++++++++++++++++++++++++++++++++
Agraphics/pnj1_sheet.png | 0
Agraphics/pnj1_sheet.png.import | 35+++++++++++++++++++++++++++++++++++
Agraphics/president_sheet.png | 0
Agraphics/president_sheet.png.import | 35+++++++++++++++++++++++++++++++++++
28 files changed, 616 insertions(+), 53 deletions(-)

diff --git a/Guard.gd b/Guard.gd @@ -24,12 +24,32 @@ func _unhandled_input(event): target = event.position if event.doubleclick and dash_state <= -dash_timeout: dash_state = dash_duration - print("dash") + $Dash.visible = true func _physics_process(delta): var to_target = target - position if to_target.length() > stop_dist: var move_speed = dash_speed if dash_state > 0 else speed move_and_slide(to_target.normalized()*move_speed) + + var direction = int(rad2deg(to_target.angle())+360+45)%360/90 + if direction == 0: + $Sprite.animation = "right" + elif direction == 1: + $Sprite.animation = "down" + elif direction == 2: + $Sprite.animation = "left" + elif direction == 3: + $Sprite.animation = "up" + $Sprite.playing = true + else: + $Sprite.playing = false + $Sprite.frame = 0 + if dash_state > -dash_timeout: dash_state -= delta + if dash_state <= 0: + $Dash.scale.x = (dash_timeout+dash_state)/dash_timeout * 0.01 + else: + $Dash.visible = false + diff --git a/Level.gd b/Level.gd @@ -13,5 +13,5 @@ func _ready(): $LvlLabel.text = "lvl: " + String(lvl) func _physics_process(_delta): - if $President.position.x + safe_radius > get_viewport_rect().size.x: + if $YSort/President.position.x + safe_radius > get_viewport_rect().size.x: get_parent().next_lvl() diff --git a/Level.tscn b/Level.tscn @@ -1,83 +1,371 @@ -[gd_scene load_steps=8 format=2] +[gd_scene load_steps=55 format=2] [ext_resource path="res://Level.gd" type="Script" id=1] [ext_resource path="res://President.gd" type="Script" id=2] [ext_resource path="res://Public.tscn" type="PackedScene" id=3] [ext_resource path="res://Guard.gd" type="Script" id=4] -[ext_resource path="res://icon.png" type="Texture" id=5] +[ext_resource path="res://graphics/guard_sheet.png" type="Texture" id=5] +[ext_resource path="res://graphics/president_sheet.png" type="Texture" id=6] [sub_resource type="CanvasItemMaterial" id=2] -[sub_resource type="CircleShape2D" id=1] -radius = 29.0172 +[sub_resource type="RectangleShape2D" id=46] +extents = Vector2( 45, 230.5 ) + +[sub_resource type="RectangleShape2D" id=47] +extents = Vector2( 39, 418 ) + +[sub_resource type="CapsuleShape2D" id=3] +radius = 12.0 +height = 6.0 + +[sub_resource type="AtlasTexture" id=4] +flags = 4 +atlas = ExtResource( 6 ) +region = Rect2( 0, 120, 60, 60 ) + +[sub_resource type="AtlasTexture" id=5] +flags = 4 +atlas = ExtResource( 6 ) +region = Rect2( 60, 120, 60, 60 ) + +[sub_resource type="AtlasTexture" id=6] +flags = 4 +atlas = ExtResource( 6 ) +region = Rect2( 120, 120, 60, 60 ) + +[sub_resource type="AtlasTexture" id=7] +flags = 4 +atlas = ExtResource( 6 ) +region = Rect2( 180, 120, 60, 60 ) + +[sub_resource type="AtlasTexture" id=8] +flags = 4 +atlas = ExtResource( 6 ) +region = Rect2( 0, 60, 60, 60 ) + +[sub_resource type="AtlasTexture" id=9] +flags = 4 +atlas = ExtResource( 6 ) +region = Rect2( 60, 60, 60, 60 ) + +[sub_resource type="AtlasTexture" id=10] +flags = 4 +atlas = ExtResource( 6 ) +region = Rect2( 120, 60, 60, 60 ) + +[sub_resource type="AtlasTexture" id=11] +flags = 4 +atlas = ExtResource( 6 ) +region = Rect2( 180, 60, 60, 60 ) + +[sub_resource type="AtlasTexture" id=12] +flags = 4 +atlas = ExtResource( 6 ) +region = Rect2( 240, 60, 60, 60 ) + +[sub_resource type="AtlasTexture" id=13] +flags = 4 +atlas = ExtResource( 6 ) +region = Rect2( 300, 60, 60, 60 ) + +[sub_resource type="AtlasTexture" id=14] +flags = 4 +atlas = ExtResource( 6 ) +region = Rect2( 0, 0, 60, 60 ) + +[sub_resource type="AtlasTexture" id=15] +flags = 4 +atlas = ExtResource( 6 ) +region = Rect2( 60, 0, 60, 60 ) + +[sub_resource type="AtlasTexture" id=16] +flags = 4 +atlas = ExtResource( 6 ) +region = Rect2( 120, 0, 60, 60 ) + +[sub_resource type="AtlasTexture" id=17] +flags = 4 +atlas = ExtResource( 6 ) +region = Rect2( 180, 0, 60, 60 ) + +[sub_resource type="AtlasTexture" id=18] +flags = 4 +atlas = ExtResource( 6 ) +region = Rect2( 240, 0, 60, 60 ) + +[sub_resource type="AtlasTexture" id=19] +flags = 4 +atlas = ExtResource( 6 ) +region = Rect2( 300, 0, 60, 60 ) + +[sub_resource type="AtlasTexture" id=20] +flags = 4 +atlas = ExtResource( 6 ) +region = Rect2( 0, 180, 60, 60 ) + +[sub_resource type="AtlasTexture" id=21] +flags = 4 +atlas = ExtResource( 6 ) +region = Rect2( 60, 180, 60, 60 ) + +[sub_resource type="AtlasTexture" id=22] +flags = 4 +atlas = ExtResource( 6 ) +region = Rect2( 120, 180, 60, 60 ) + +[sub_resource type="AtlasTexture" id=23] +flags = 4 +atlas = ExtResource( 6 ) +region = Rect2( 180, 180, 60, 60 ) + +[sub_resource type="SpriteFrames" id=24] +animations = [ { +"frames": [ SubResource( 4 ), SubResource( 5 ), SubResource( 6 ), SubResource( 7 ) ], +"loop": true, +"name": "down", +"speed": 5.0 +}, { +"frames": [ SubResource( 8 ), SubResource( 9 ), SubResource( 10 ), SubResource( 11 ), SubResource( 12 ), SubResource( 13 ) ], +"loop": true, +"name": "left", +"speed": 5.0 +}, { +"frames": [ SubResource( 14 ), SubResource( 15 ), SubResource( 16 ), SubResource( 17 ), SubResource( 18 ), SubResource( 19 ) ], +"loop": true, +"name": "right", +"speed": 5.0 +}, { +"frames": [ SubResource( 20 ), SubResource( 21 ), SubResource( 22 ), SubResource( 23 ) ], +"loop": true, +"name": "up", +"speed": 5.0 +} ] + +[sub_resource type="AtlasTexture" id=25] +flags = 4 +atlas = ExtResource( 5 ) +region = Rect2( 0, 120, 60, 60 ) + +[sub_resource type="AtlasTexture" id=26] +flags = 4 +atlas = ExtResource( 5 ) +region = Rect2( 60, 120, 60, 60 ) + +[sub_resource type="AtlasTexture" id=27] +flags = 4 +atlas = ExtResource( 5 ) +region = Rect2( 120, 120, 60, 60 ) + +[sub_resource type="AtlasTexture" id=28] +flags = 4 +atlas = ExtResource( 5 ) +region = Rect2( 180, 120, 60, 60 ) + +[sub_resource type="AtlasTexture" id=29] +flags = 4 +atlas = ExtResource( 5 ) +region = Rect2( 0, 60, 60, 60 ) + +[sub_resource type="AtlasTexture" id=30] +flags = 4 +atlas = ExtResource( 5 ) +region = Rect2( 60, 60, 60, 60 ) + +[sub_resource type="AtlasTexture" id=31] +flags = 4 +atlas = ExtResource( 5 ) +region = Rect2( 120, 60, 60, 60 ) + +[sub_resource type="AtlasTexture" id=32] +flags = 4 +atlas = ExtResource( 5 ) +region = Rect2( 180, 60, 60, 60 ) + +[sub_resource type="AtlasTexture" id=33] +flags = 4 +atlas = ExtResource( 5 ) +region = Rect2( 240, 60, 60, 60 ) + +[sub_resource type="AtlasTexture" id=34] +flags = 4 +atlas = ExtResource( 5 ) +region = Rect2( 300, 60, 60, 60 ) + +[sub_resource type="AtlasTexture" id=35] +flags = 4 +atlas = ExtResource( 5 ) +region = Rect2( 0, 0, 60, 60 ) + +[sub_resource type="AtlasTexture" id=36] +flags = 4 +atlas = ExtResource( 5 ) +region = Rect2( 60, 0, 60, 60 ) + +[sub_resource type="AtlasTexture" id=37] +flags = 4 +atlas = ExtResource( 5 ) +region = Rect2( 120, 0, 60, 60 ) + +[sub_resource type="AtlasTexture" id=38] +flags = 4 +atlas = ExtResource( 5 ) +region = Rect2( 180, 0, 60, 60 ) + +[sub_resource type="AtlasTexture" id=39] +flags = 4 +atlas = ExtResource( 5 ) +region = Rect2( 240, 0, 60, 60 ) + +[sub_resource type="AtlasTexture" id=40] +flags = 4 +atlas = ExtResource( 5 ) +region = Rect2( 300, 0, 60, 60 ) + +[sub_resource type="AtlasTexture" id=41] +flags = 4 +atlas = ExtResource( 5 ) +region = Rect2( 0, 180, 60, 60 ) + +[sub_resource type="AtlasTexture" id=42] +flags = 4 +atlas = ExtResource( 5 ) +region = Rect2( 60, 180, 60, 60 ) + +[sub_resource type="AtlasTexture" id=43] +flags = 4 +atlas = ExtResource( 5 ) +region = Rect2( 120, 180, 60, 60 ) + +[sub_resource type="AtlasTexture" id=44] +flags = 4 +atlas = ExtResource( 5 ) +region = Rect2( 180, 180, 60, 60 ) + +[sub_resource type="SpriteFrames" id=45] +animations = [ { +"frames": [ SubResource( 25 ), SubResource( 26 ), SubResource( 27 ), SubResource( 28 ) ], +"loop": true, +"name": "down", +"speed": 5.0 +}, { +"frames": [ SubResource( 29 ), SubResource( 30 ), SubResource( 31 ), SubResource( 32 ), SubResource( 33 ), SubResource( 34 ) ], +"loop": true, +"name": "left", +"speed": 5.0 +}, { +"frames": [ SubResource( 35 ), SubResource( 36 ), SubResource( 37 ), SubResource( 38 ), SubResource( 39 ), SubResource( 40 ) ], +"loop": true, +"name": "right", +"speed": 5.0 +}, { +"frames": [ SubResource( 41 ), SubResource( 42 ), SubResource( 43 ), SubResource( 44 ) ], +"loop": true, +"name": "up", +"speed": 5.0 +} ] + +[sub_resource type="Gradient" id=48] +colors = PoolColorArray( 1, 1, 1, 1, 0.541176, 0.541176, 0.541176, 1 ) + +[sub_resource type="GradientTexture" id=49] +gradient = SubResource( 48 ) [node name="Level" type="Node2D"] script = ExtResource( 1 ) -[node name="LvlLabel" type="Label" parent="."] -margin_left = 438.0 -margin_top = 7.0 -margin_right = 502.0 -margin_bottom = 21.0 -text = "lvl: 1" -align = 2 +[node name="YSort" type="YSort" parent="."] -[node name="Walls" type="StaticBody2D" parent="."] +[node name="Walls" type="StaticBody2D" parent="YSort"] material = SubResource( 2 ) position = Vector2( 1067, 274 ) -[node name="CollisionPolygon2D" type="CollisionPolygon2D" parent="Walls"] +[node name="CollisionPolygon2D" type="CollisionPolygon2D" parent="YSort/Walls"] visible = false build_mode = 1 polygon = PoolVector2Array( -1067, -274, -555, -274, -555, 26, -1067, 26 ) +disabled = true + +[node name="BackWallShape" type="CollisionShape2D" parent="YSort/Walls"] +position = Vector2( -509, -116.5 ) +shape = SubResource( 46 ) + +[node name="DownWallShape" type="CollisionShape2D" parent="YSort/Walls"] +position = Vector2( -888, 65 ) +rotation = 1.5708 +shape = SubResource( 47 ) -[node name="President" type="RigidBody2D" parent="."] +[node name="TopWallShape" type="CollisionShape2D" parent="YSort/Walls"] +position = Vector2( -888, -313 ) +rotation = 1.5708 +shape = SubResource( 47 ) + +[node name="President" type="RigidBody2D" parent="YSort"] position = Vector2( 29, 155 ) mode = 2 script = ExtResource( 2 ) + +[node name="CollisionShape2D" type="CollisionShape2D" parent="YSort/President"] +position = Vector2( 0, 12 ) +rotation = 1.5708 +shape = SubResource( 3 ) + +[node name="Sprite" type="AnimatedSprite" parent="YSort/President"] +frames = SubResource( 24 ) +animation = "up" +frame = 1 +playing = true __meta__ = { -"_edit_group_": true +"_edit_lock_": true } -[node name="Sprite" type="Sprite" parent="President"] -texture = ExtResource( 5 ) +[node name="Guard" type="KinematicBody2D" parent="YSort"] +position = Vector2( 48, 90 ) +script = ExtResource( 4 ) + +[node name="Sprite" type="AnimatedSprite" parent="YSort/Guard"] +frames = SubResource( 45 ) +animation = "up" +frame = 2 -[node name="CollisionShape2D" type="CollisionShape2D" parent="President"] -shape = SubResource( 1 ) +[node name="CollisionShape2D" type="CollisionShape2D" parent="YSort/Guard"] +position = Vector2( 0, 12 ) +rotation = 1.5708 +shape = SubResource( 3 ) -[node name="Public" parent="." instance=ExtResource( 3 )] +[node name="Dash" type="Sprite" parent="YSort/Guard"] +position = Vector2( 0, -33.0625 ) +scale = Vector2( 0.01, 2 ) +texture = SubResource( 49 ) + +[node name="Public" parent="YSort" instance=ExtResource( 3 )] position = Vector2( 152, 250 ) -[node name="Public2" parent="." instance=ExtResource( 3 )] +[node name="Public2" parent="YSort" instance=ExtResource( 3 )] position = Vector2( 285, 78 ) -[node name="Public3" parent="." instance=ExtResource( 3 )] +[node name="Public3" parent="YSort" instance=ExtResource( 3 )] position = Vector2( 277, 189 ) -[node name="Public4" parent="." instance=ExtResource( 3 )] +[node name="Public4" parent="YSort" instance=ExtResource( 3 )] position = Vector2( 156, 66 ) -[node name="Public5" parent="." instance=ExtResource( 3 )] +[node name="Public5" parent="YSort" instance=ExtResource( 3 )] position = Vector2( 255, 248 ) -[node name="Public6" parent="." instance=ExtResource( 3 )] +[node name="Public6" parent="YSort" instance=ExtResource( 3 )] position = Vector2( 176, 139 ) -[node name="Public7" parent="." instance=ExtResource( 3 )] +[node name="Public7" parent="YSort" instance=ExtResource( 3 )] position = Vector2( 395, 266 ) -[node name="Public8" parent="." instance=ExtResource( 3 )] +[node name="Public8" parent="YSort" instance=ExtResource( 3 )] position = Vector2( 409, 123 ) -[node name="Guard" type="KinematicBody2D" parent="."] -position = Vector2( 54, 74 ) -script = ExtResource( 4 ) -__meta__ = { -"_edit_group_": true -} - -[node name="Sprite" type="Sprite" parent="Guard"] -texture = ExtResource( 5 ) - -[node name="CollisionShape2D" type="CollisionShape2D" parent="Guard"] -shape = SubResource( 1 ) +[node name="LvlLabel" type="Label" parent="."] +margin_left = 438.0 +margin_top = 7.0 +margin_right = 502.0 +margin_bottom = 21.0 +text = "lvl: 1" +align = 2 diff --git a/President.gd b/President.gd @@ -2,6 +2,17 @@ extends RigidBody2D export var max_speed = 30.0 +func _process(_delta): + var direction = int(rad2deg(linear_velocity.angle())+360+45)%360/90 + if direction == 0: + $Sprite.animation = "right" + elif direction == 1: + $Sprite.animation = "down" + elif direction == 2: + $Sprite.animation = "left" + elif direction == 3: + $Sprite.animation = "up" + func _integrate_forces(state): #print_debug(state.linear_velocity.x) if state.linear_velocity.x < max_speed: diff --git a/Public.gd b/Public.gd @@ -6,6 +6,19 @@ export var force = 20.0 func _ready(): max_speed = rand_range(0, max_speed) +func _process(_delta): + $Sprite.rotation = -rotation + + var direction = int(rad2deg(linear_velocity.angle())+360+45)%360/90 + if direction == 0: + $Sprite.animation = "right" + elif direction == 1: + $Sprite.animation = "down" + elif direction == 2: + $Sprite.animation = "left" + elif direction == 3: + $Sprite.animation = "up" + func _integrate_forces(state): #print_debug(state.linear_velocity.x) var direction = get_node("../President").position - position diff --git a/Public.tscn b/Public.tscn @@ -1,23 +1,149 @@ -[gd_scene load_steps=4 format=2] +[gd_scene load_steps=25 format=2] -[ext_resource path="res://icon.png" type="Texture" id=1] [ext_resource path="res://Public.gd" type="Script" id=2] +[ext_resource path="res://graphics/pnj1_sheet.png" type="Texture" id=3] -[sub_resource type="CircleShape2D" id=1] -radius = 29.0172 +[sub_resource type="AtlasTexture" id=2] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 0, 120, 60, 60 ) + +[sub_resource type="AtlasTexture" id=3] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 60, 120, 60, 60 ) + +[sub_resource type="AtlasTexture" id=4] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 120, 120, 60, 60 ) + +[sub_resource type="AtlasTexture" id=5] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 180, 120, 60, 60 ) + +[sub_resource type="AtlasTexture" id=6] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 0, 60, 60, 60 ) + +[sub_resource type="AtlasTexture" id=7] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 60, 60, 60, 60 ) + +[sub_resource type="AtlasTexture" id=8] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 120, 60, 60, 60 ) + +[sub_resource type="AtlasTexture" id=9] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 180, 60, 60, 60 ) + +[sub_resource type="AtlasTexture" id=10] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 240, 60, 60, 60 ) + +[sub_resource type="AtlasTexture" id=11] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 300, 60, 60, 60 ) + +[sub_resource type="AtlasTexture" id=12] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 0, 0, 60, 60 ) + +[sub_resource type="AtlasTexture" id=13] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 60, 0, 60, 60 ) + +[sub_resource type="AtlasTexture" id=14] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 120, 0, 60, 60 ) + +[sub_resource type="AtlasTexture" id=15] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 180, 0, 60, 60 ) + +[sub_resource type="AtlasTexture" id=16] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 240, 0, 60, 60 ) + +[sub_resource type="AtlasTexture" id=17] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 300, 0, 60, 60 ) + +[sub_resource type="AtlasTexture" id=18] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 0, 180, 60, 60 ) + +[sub_resource type="AtlasTexture" id=19] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 60, 180, 60, 60 ) + +[sub_resource type="AtlasTexture" id=20] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 120, 180, 60, 60 ) + +[sub_resource type="AtlasTexture" id=21] +flags = 4 +atlas = ExtResource( 3 ) +region = Rect2( 180, 180, 60, 60 ) + +[sub_resource type="SpriteFrames" id=22] +animations = [ { +"frames": [ SubResource( 2 ), SubResource( 3 ), SubResource( 4 ), SubResource( 5 ) ], +"loop": true, +"name": "down", +"speed": 5.0 +}, { +"frames": [ SubResource( 6 ), SubResource( 7 ), SubResource( 8 ), SubResource( 9 ), SubResource( 10 ), SubResource( 11 ) ], +"loop": true, +"name": "left", +"speed": 5.0 +}, { +"frames": [ SubResource( 12 ), SubResource( 13 ), SubResource( 14 ), SubResource( 15 ), SubResource( 16 ), SubResource( 17 ) ], +"loop": true, +"name": "right", +"speed": 5.0 +}, { +"frames": [ SubResource( 18 ), SubResource( 19 ), SubResource( 20 ), SubResource( 21 ) ], +"loop": true, +"name": "up", +"speed": 5.0 +} ] + +[sub_resource type="CircleShape2D" id=23] +radius = 14.1421 [node name="Public" type="RigidBody2D" groups=["public"]] -mode = 2 gravity_scale = 0.0 linear_damp = 1.0 script = ExtResource( 2 ) - -[node name="CollisionShape2D" type="CollisionShape2D" parent="."] -shape = SubResource( 1 ) __meta__ = { -"_edit_lock_": true +"_edit_group_": true } -[node name="Icon" type="Sprite" parent="."] -position = Vector2( 0, -4 ) -texture = ExtResource( 1 ) +[node name="Sprite" type="AnimatedSprite" parent="."] +frames = SubResource( 22 ) +animation = "down" +frame = 1 +playing = true + +[node name="CollisionShape2D" type="CollisionShape2D" parent="."] +position = Vector2( 0, 12 ) +rotation = 1.5708 +shape = SubResource( 23 ) diff --git a/artsrc/garde du corp gauche.aseprite b/artsrc/garde du corp gauche.aseprite Binary files differ. diff --git a/artsrc/garde du corp bas.aseprite b/artsrc/garde du corp bas.aseprite Binary files differ. diff --git a/artsrc/garde du corp droite.aseprite b/artsrc/garde du corp droite.aseprite Binary files differ. diff --git a/artsrc/garde du corps haut.aseprite b/artsrc/garde du corps haut.aseprite Binary files differ. diff --git a/artsrc/guard_sheet.aseprite b/artsrc/guard_sheet.aseprite Binary files differ. diff --git a/artsrc/pnj1 bas.aseprite b/artsrc/pnj1 bas.aseprite Binary files differ. diff --git a/artsrc/pnj1 droite.aseprite b/artsrc/pnj1 droite.aseprite Binary files differ. diff --git a/artsrc/pnj1 gauche.aseprite b/artsrc/pnj1 gauche.aseprite Binary files differ. diff --git a/artsrc/pnj1 haut.aseprite b/artsrc/pnj1 haut.aseprite Binary files differ. diff --git a/artsrc/pnj1_sheet.aseprite b/artsrc/pnj1_sheet.aseprite Binary files differ. diff --git a/artsrc/president_sheet.aseprite b/artsrc/president_sheet.aseprite Binary files differ. diff --git a/artsrc/sprite president bas.aseprite b/artsrc/sprite president bas.aseprite Binary files differ. diff --git a/artsrc/sprite president droite.aseprite b/artsrc/sprite president droite.aseprite Binary files differ. diff --git a/artsrc/sprite president gauche.aseprite b/artsrc/sprite president gauche.aseprite Binary files differ. diff --git a/artsrc/sprite president haut.aseprite b/artsrc/sprite president haut.aseprite Binary files differ. diff --git a/artsrc/sprite president.aseprite b/artsrc/sprite president.aseprite Binary files differ. diff --git a/graphics/guard_sheet.png b/graphics/guard_sheet.png Binary files differ. diff --git a/graphics/guard_sheet.png.import b/graphics/guard_sheet.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/guard_sheet.png-c2c97b2dd2390b5ba78b64f6925d75c2.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://graphics/guard_sheet.png" +dest_files=[ "res://.import/guard_sheet.png-c2c97b2dd2390b5ba78b64f6925d75c2.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=0 +flags/repeat=0 +flags/filter=true +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=2 +process/fix_alpha_border=true +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=true +svg/scale=1.0 diff --git a/graphics/pnj1_sheet.png b/graphics/pnj1_sheet.png Binary files differ. diff --git a/graphics/pnj1_sheet.png.import b/graphics/pnj1_sheet.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/pnj1_sheet.png-0403c990284f0d559c9d07b38378d90c.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://graphics/pnj1_sheet.png" +dest_files=[ "res://.import/pnj1_sheet.png-0403c990284f0d559c9d07b38378d90c.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=0 +flags/repeat=0 +flags/filter=true +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=2 +process/fix_alpha_border=true +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=true +svg/scale=1.0 diff --git a/graphics/president_sheet.png b/graphics/president_sheet.png Binary files differ. diff --git a/graphics/president_sheet.png.import b/graphics/president_sheet.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/president_sheet.png-35498a7631dc3ff158b05857c66e3c5d.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://graphics/president_sheet.png" +dest_files=[ "res://.import/president_sheet.png-35498a7631dc3ff158b05857c66e3c5d.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=0 +flags/repeat=0 +flags/filter=true +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=2 +process/fix_alpha_border=true +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=true +svg/scale=1.0