From f307a7ef0055289f7e7d97b44bcf324b64a86f21 Mon Sep 17 00:00:00 2001 From: Ivan Kuzmenko <6745157+rndtrash@users.noreply.github.com> Date: Wed, 16 Aug 2023 00:13:37 +0300 Subject: [PATCH] Add new cool light beam for the flashlight MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Евгений Титаренко --- invert.py | 34 +++++++++ prefabs/player.tscn | 3 +- process_sprites.bat | 3 + project.godot | 5 ++ requirements.txt | 1 + scenes/main_scene.tscn | 91 ++++++++++++++++++------- scripts/Constants.cs | 9 +++ scripts/Flashlight.cs | 48 +++++++++++++ scripts/GameCamera.cs | 19 ++++++ scripts/Player.cs | 69 ++++++++----------- scripts/PointLight2DWorkaround.cs | 16 +++++ sprites/brickwall.png | Bin 248 -> 245 bytes sprites/player/mc-walk-bottom.png | Bin 651 -> 638 bytes sprites/player/mc-walk-side.png | Bin 662 -> 635 bytes sprites/player/mc-walk-up.png | Bin 512 -> 491 bytes sprites_orig/.gdignore | 0 sprites_orig/brickwall.png | Bin 0 -> 245 bytes sprites_orig/player/mc-walk-bottom.png | Bin 0 -> 651 bytes sprites_orig/player/mc-walk-side.png | Bin 0 -> 662 bytes sprites_orig/player/mc-walk-up.png | Bin 0 -> 512 bytes 20 files changed, 230 insertions(+), 68 deletions(-) create mode 100644 invert.py create mode 100644 process_sprites.bat create mode 100644 requirements.txt create mode 100644 scripts/Constants.cs create mode 100644 scripts/Flashlight.cs create mode 100644 scripts/GameCamera.cs create mode 100644 scripts/PointLight2DWorkaround.cs create mode 100644 sprites_orig/.gdignore create mode 100644 sprites_orig/brickwall.png create mode 100644 sprites_orig/player/mc-walk-bottom.png create mode 100644 sprites_orig/player/mc-walk-side.png create mode 100644 sprites_orig/player/mc-walk-up.png diff --git a/invert.py b/invert.py new file mode 100644 index 0000000..47b3eb2 --- /dev/null +++ b/invert.py @@ -0,0 +1,34 @@ +# shout out to FriendlyWithMeat + +from PIL import Image +from pathlib import Path +import os +from PIL.ImageOps import invert +import argparse + +parser = argparse.ArgumentParser( + prog='invert.py', + description='Took images from INPUT_FOLDER, invert them and save in OUTPUT_FOLDER.') +parser.add_argument('INPUT_FOLDER') +parser.add_argument('OUTPUT_FOLDER') + +args = parser.parse_args() + +WORK_DIR = Path(args.INPUT_FOLDER) +IMG_EXTS = set((".png",)) +OUT_DIR = Path(args.OUTPUT_FOLDER) + + +OUT_DIR.mkdir(exist_ok=True) +dir_contents = os.listdir(WORK_DIR) +for elem in dir_contents: + img_file = Path(os.path.join(WORK_DIR, elem)) + if img_file.suffix in IMG_EXTS: + image = Image.open(img_file) + r, g, b, a = image.convert('RGBA').split() + rgb_image = Image.merge('RGB', (r,g,b)) + inv_image = invert(rgb_image) + r, g, b = inv_image.split() + final_img = Image.merge('RGBA', (r,g,b,a)) + save_path = Path(os.path.join(OUT_DIR, elem)) + final_img.save(save_path) \ No newline at end of file diff --git a/prefabs/player.tscn b/prefabs/player.tscn index 23fe052..c714aef 100644 --- a/prefabs/player.tscn +++ b/prefabs/player.tscn @@ -15,5 +15,4 @@ shape = SubResource("RectangleShape2D_5hhj3") [node name="AnimatedSprite2D" type="AnimatedSprite2D" parent="."] sprite_frames = ExtResource("1_8jl58") -animation = &"up" -frame_progress = 0.975256 +animation = &"down" diff --git a/process_sprites.bat b/process_sprites.bat new file mode 100644 index 0000000..5bb634b --- /dev/null +++ b/process_sprites.bat @@ -0,0 +1,3 @@ +python invert.py sprites_orig sprites +python invert.py sprites_orig\player sprites\player +pause \ No newline at end of file diff --git a/project.godot b/project.godot index a6dc99f..d6a72dd 100644 --- a/project.godot +++ b/project.godot @@ -37,8 +37,13 @@ project/assembly_name="1bit-game-jam" textures/canvas_textures/default_texture_filter=0 renderer/rendering_method="mobile" textures/lossless_compression/force_png=true +textures/default_filters/use_nearest_mipmap_filter=true textures/default_filters/anisotropic_filtering_level=0 +environment/ssao/quality=0 +environment/ssil/quality=0 anti_aliasing/screen_space_roughness_limiter/enabled=false +textures/decals/filter=0 +textures/light_projectors/filter=0 environment/glow/upscale_mode=0 environment/defaults/default_clear_color=Color(0, 0, 0, 1) 2d/snap/snap_2d_transforms_to_pixel=true diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..3a88fde --- /dev/null +++ b/requirements.txt @@ -0,0 +1 @@ +Pillow>=10.0.0 \ No newline at end of file diff --git a/scenes/main_scene.tscn b/scenes/main_scene.tscn index b2d7764..4123acc 100644 --- a/scenes/main_scene.tscn +++ b/scenes/main_scene.tscn @@ -1,49 +1,92 @@ -[gd_scene load_steps=6 format=3 uid="uid://dhn7yt46fyac8"] +[gd_scene load_steps=11 format=3 uid="uid://dhn7yt46fyac8"] [ext_resource type="PackedScene" uid="uid://bhulqhxesd5gc" path="res://prefabs/player.tscn" id="1_65a7v"] [ext_resource type="Texture2D" uid="uid://py6qiu3rm7cu" path="res://sprites/brickwall.png" id="2_edqdh"] [ext_resource type="Texture2D" uid="uid://dlbl6d4yghvht" path="res://sprites/mask.png" id="3_8o315"] +[ext_resource type="Script" path="res://scripts/Flashlight.cs" id="3_cylxo"] [ext_resource type="Material" uid="uid://xuvxq5hy1dt" path="res://shaders/light_shader_material.tres" id="4_ro05e"] +[ext_resource type="Script" path="res://scripts/GameCamera.cs" id="6_quua3"] +[ext_resource type="Script" path="res://scripts/PointLight2DWorkaround.cs" id="6_slohe"] [sub_resource type="CanvasItemMaterial" id="CanvasItemMaterial_wg1ao"] light_mode = 2 -[node name="Root" type="Node2D"] +[sub_resource type="ViewportTexture" id="ViewportTexture_nnmvo"] +viewport_path = NodePath("FlashlightViewport") -[node name="Player" parent="." node_paths=PackedStringArray("FlashlightUI", "FlashlightWorld") instance=ExtResource("1_65a7v")] -position = Vector2(19, 4) -FlashlightUI = NodePath("../CanvasLayer/FlashlightUI") -FlashlightWorld = NodePath("../Camera2D/PointLight2D") +[sub_resource type="CanvasItemMaterial" id="CanvasItemMaterial_au1d0"] +light_mode = 2 + +[node name="Root" type="Node2D"] [node name="TestWall" type="Sprite2D" parent="."] light_mask = 2 material = SubResource("CanvasItemMaterial_wg1ao") -position = Vector2(-108, -74) +position = Vector2(58, 37) texture = ExtResource("2_edqdh") -[node name="CanvasLayer" type="CanvasLayer" parent="."] +[node name="Player" parent="." instance=ExtResource("1_65a7v")] +position = Vector2(19, 4) -[node name="FlashlightUI" type="Sprite2D" parent="CanvasLayer"] -clip_children = 1 +[node name="FlashlightViewport" type="SubViewport" parent="."] +transparent_bg = true +snap_2d_transforms_to_pixel = true +snap_2d_vertices_to_pixel = true +canvas_item_default_texture_filter = 0 +size = Vector2i(256, 192) +render_target_update_mode = 4 + +[node name="Circle" type="Sprite2D" parent="FlashlightViewport"] texture = ExtResource("3_8o315") -[node name="InvertRect" type="ColorRect" parent="CanvasLayer/FlashlightUI"] -material = ExtResource("4_ro05e") -anchors_preset = 15 -anchor_right = 1.0 -anchor_bottom = 1.0 -offset_left = -32.0 -offset_top = -32.0 -offset_right = -32.0 -offset_bottom = -32.0 -grow_horizontal = 2 -grow_vertical = 2 -metadata/_edit_use_anchors_ = true +[node name="PlayerCircle" type="Sprite2D" parent="FlashlightViewport"] +position = Vector2(13.61, 14.405) +scale = Vector2(0.5, 0.5) +texture = ExtResource("3_8o315") -[node name="Camera2D" type="Camera2D" parent="."] +[node name="Triangle" type="Polygon2D" parent="FlashlightViewport"] +polygon = PackedVector2Array(-21, -25, 31, 29, -42, 31) -[node name="PointLight2D" type="PointLight2D" parent="Camera2D"] +[node name="Controller" type="Node" parent="FlashlightViewport" node_paths=PackedStringArray("Player", "Camera", "Circle", "PlayerCircle", "Polygon")] +script = ExtResource("3_cylxo") +Player = NodePath("../../Player") +Camera = NodePath("../../PlayerCamera") +Circle = NodePath("../Circle") +PlayerCircle = NodePath("../PlayerCircle") +Polygon = NodePath("../Triangle") + +[node name="PlayerCamera" type="Camera2D" parent="."] +script = ExtResource("6_quua3") + +[node name="PointLight2D" type="PointLight2D" parent="PlayerCamera" node_paths=PackedStringArray("LightViewport")] energy = 16.0 blend_mode = 2 range_item_cull_mask = 2 +script = ExtResource("6_slohe") +LightViewport = NodePath("../../FlashlightViewport") + +[node name="CanvasLayer" type="CanvasLayer" parent="."] + +[node name="FlashlightUI" type="TextureRect" parent="CanvasLayer"] +clip_children = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +texture = SubResource("ViewportTexture_nnmvo") + +[node name="InvertRect" type="ColorRect" parent="CanvasLayer/FlashlightUI"] +material = ExtResource("4_ro05e") +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="Sprite2D" type="Sprite2D" parent="."] +light_mask = 2 +material = SubResource("CanvasItemMaterial_au1d0") +position = Vector2(-83, 43) texture = ExtResource("3_8o315") diff --git a/scripts/Constants.cs b/scripts/Constants.cs new file mode 100644 index 0000000..91c9114 --- /dev/null +++ b/scripts/Constants.cs @@ -0,0 +1,9 @@ +using Godot; + +public static class Constants +{ + public static readonly Vector2 ScreenSize = new(256, 192); + public static readonly Vector2 HalfScreenSize = ScreenSize / 2; + + public const float MaxFlashlightRadius = 32; +} \ No newline at end of file diff --git a/scripts/Flashlight.cs b/scripts/Flashlight.cs new file mode 100644 index 0000000..c8876db --- /dev/null +++ b/scripts/Flashlight.cs @@ -0,0 +1,48 @@ +using Godot; + +public partial class Flashlight : Node +{ + [Export] public Player Player; + [Export] public GameCamera Camera; + + [Export] public Node2D Circle; + [Export] public Node2D PlayerCircle; + [Export] public Polygon2D Polygon; + + private float FlashlightRadius = Constants.MaxFlashlightRadius; + + public override void _Process(double delta) + { + var playerScreenCenterPosition = Player.Position - Camera.Position; + var flashlightScreenCenterPosition = Camera.FlashlightPosition - Camera.Position; + + var playerScreenPosition = playerScreenCenterPosition + Constants.HalfScreenSize; + PlayerCircle.Position = playerScreenPosition; + + var flashlightScreenPosition = flashlightScreenCenterPosition + Constants.HalfScreenSize; + var flashlightScale = FlashlightRadius / Constants.MaxFlashlightRadius; + Circle.Position = flashlightScreenPosition; + Circle.Scale = new Vector2(flashlightScale, flashlightScale); + + var d = Camera.FlashlightPosition.DistanceTo(Player.Position); + if (d <= FlashlightRadius) + Polygon.Visible = false; + else + { + Polygon.Visible = true; + + var a = Mathf.Sqrt(d * d - FlashlightRadius * FlashlightRadius); + var xy2 = Camera.FlashlightPosition - Player.Position; + var angle = xy2.Angle(); + + var arcsinRd = Mathf.Asin(FlashlightRadius / d); + var dslkhjdsflkhjsdfhlkjdfsjlk = angle + arcsinRd; + var xy3 = a * new Vector2(Mathf.Cos(dslkhjdsflkhjsdfhlkjdfsjlk), Mathf.Sin(dslkhjdsflkhjsdfhlkjdfsjlk)); + var dslkhjdsflkhjsdfhlkjdfsjlk2 = angle - arcsinRd; + var xy4 = a * new Vector2(Mathf.Cos(dslkhjdsflkhjsdfhlkjdfsjlk2), Mathf.Sin(dslkhjdsflkhjsdfhlkjdfsjlk2)); + + Polygon.Polygon = new[] + { playerScreenPosition, playerScreenPosition + xy3, playerScreenPosition + xy4 }; + } + } +} \ No newline at end of file diff --git a/scripts/GameCamera.cs b/scripts/GameCamera.cs new file mode 100644 index 0000000..1614f37 --- /dev/null +++ b/scripts/GameCamera.cs @@ -0,0 +1,19 @@ +using Godot; + +public partial class GameCamera : Camera2D +{ + /// + /// World position of the flashlight + /// + public Vector2 FlashlightPosition; + + public override void _Input(InputEvent @event) + { + base._Input(@event); + + if (@event is InputEventMouseMotion eventMouseMotion) + { + FlashlightPosition = eventMouseMotion.Position - Constants.HalfScreenSize + Position; + } + } +} diff --git a/scripts/Player.cs b/scripts/Player.cs index 0182dcd..865c0e9 100644 --- a/scripts/Player.cs +++ b/scripts/Player.cs @@ -1,52 +1,37 @@ using Godot; -using System; public partial class Player : CharacterBody2D { - [Export] public Node2D FlashlightUI; - [Export] public Node2D FlashlightWorld; + [Export] public const float Speed = 50.0f; - [Export] public const float Speed = 50.0f; + protected AnimatedSprite2D Sprite; - protected AnimatedSprite2D Sprite; + public override void _Ready() + { + base._Ready(); - public override void _Ready() - { - base._Ready(); + Sprite = (AnimatedSprite2D)FindChild("AnimatedSprite2D"); + } - Sprite = (AnimatedSprite2D)FindChild("AnimatedSprite2D"); - } + public override void _PhysicsProcess(double delta) + { + Vector2 velocity = Velocity; - public override void _PhysicsProcess(double delta) - { - Vector2 velocity = Velocity; + // Get the input direction and handle the movement/deceleration. + // As good practice, you should replace UI actions with custom gameplay actions. + Vector2 direction = Input.GetVector("ui_left", "ui_right", "ui_up", "ui_down"); + if (direction != Vector2.Zero) + { + velocity.X = direction.X * Speed; + velocity.Y = direction.Y * Speed; + } + else + { + velocity.X = Mathf.MoveToward(Velocity.X, 0, Speed); + velocity.Y = Mathf.MoveToward(Velocity.Y, 0, Speed); + } - // Get the input direction and handle the movement/deceleration. - // As good practice, you should replace UI actions with custom gameplay actions. - Vector2 direction = Input.GetVector("ui_left", "ui_right", "ui_up", "ui_down"); - if (direction != Vector2.Zero) - { - velocity.X = direction.X * Speed; - velocity.Y = direction.Y * Speed; - } - else - { - velocity.X = Mathf.MoveToward(Velocity.X, 0, Speed); - velocity.Y = Mathf.MoveToward(Velocity.Y, 0, Speed); - } - - Velocity = velocity; - MoveAndSlide(); - } - - public override void _Input(InputEvent @event) - { - base._Input(@event); - - if (@event is InputEventMouseMotion eventMouseMotion) - { - FlashlightUI.Position = eventMouseMotion.Position; - FlashlightWorld.Position = eventMouseMotion.Position - new Vector2(128F, 96F); - } - } -} \ No newline at end of file + Velocity = velocity; + MoveAndSlide(); + } +} diff --git a/scripts/PointLight2DWorkaround.cs b/scripts/PointLight2DWorkaround.cs new file mode 100644 index 0000000..094e9e3 --- /dev/null +++ b/scripts/PointLight2DWorkaround.cs @@ -0,0 +1,16 @@ +using Godot; +using System; + +[Tool] +public partial class PointLight2DWorkaround : PointLight2D +{ + [Export] public Viewport LightViewport; + + public override void _Process(double delta) + { + base._Process(delta); + + Texture = null; + Texture = LightViewport.GetTexture(); + } +} diff --git a/sprites/brickwall.png b/sprites/brickwall.png index 2098d9f2f5e6f5271a660d655f0570f3b7766a74..795a73f94300d739f84eb5bc8ab620d543fb90ea 100644 GIT binary patch delta 228 zcmV=K~#90?N-qa#2^TxWdHxm-V+`pW4$d- zOl~|`p$3UyAtFr@Ywha-kcFl83txRuM)Ksd_&a7OQuk4_Bo2!X1etiWD z0O*@DF`7%&2c20KcZa`Apu#p=Jk{rnuaP{u&lz8%WArO$xLqgkRG%}vMg^9c1HPQ2 z`kd{T&jHA*2daO=R}UCiVh;ST9;ng+BJL5!Lm3`5Bh)))|Aak(DlM=^1uAEN$Uz&< e)B=YI%(f4^o_VLV4X#T70000C~&yQ`~3fZ zy5xkHp{#TM(bj~kHxo0D_UN!QEOM0(U#W09Ykqc&uIMwq-*w#K^&RJ)s@Ke8#x?I;-shdr8#drXnogqU4H5J9rKR9xKbNt_25KY!kUB)Dg1nklz07p|I=3E z{r|cTvGy|xn@x`FkY1vA?7yp@d)KamTx`YB6HZDLH?vl6V4mr+IN9rTd?L`1e5nzh cX}-P;T0k}j5QD&_;K?A$)78&qol`;+0M-m&C;$Ke diff --git a/sprites/player/mc-walk-bottom.png b/sprites/player/mc-walk-bottom.png index 15ae87a53a4e017ba3f409c4c14aebce417ace08..102d778fe5f6780ea89ab2a39f1ee75eeca9e512 100644 GIT binary patch delta 614 zcmV-s0-61b1^xt(BYy%#NklllYep&9X=N&X#eW`(h=|` z;5?qrvp~w3(O`kq{j2jgFG7$32qC0*+(AUcH9UQ`=0^J0|9cK1=_zRe-K{uJ~?-{Cv8~`2U!hB?r+dAh+Casnt3C4X~3X##kgkfHs%B>db26eR#U00vmy zzZqtE7aT~iS~?Tu{~8a&CPkj=Cx6b-@@~e@O+Zls7z7}0i%LaL!(!|=_?H5G-G z)^O3G#ov^Gmj<4bz^oGlk6ZNw6zDMJ9>`zR(96$W1viivuWP`qoxvLqTK$`&vJ1yt zTrWR&1ne=QaTjiWr~I=NqFKn?iRhJ}7A`(K73AF{;Mplr=lJQR7s7F5eNK(;MM$mv zhHEtV(O)}3VtCk*W9D5l0!qzj2mYzOkQ^4MmlVcK0k~c*UIM&6@J3&gf5qh*<$kAu zkz8E<*AKWUz^Ir=rU0fpqBrhHgXm*|mWQg>KQR?sd5j`9r~m)}07*qoM6N<$f+L$E A3IG5A delta 627 zcmV-(0*w9s1d9cbBYyw^b5ch_0Itp)=>Px%D@jB_RCt{2TETY1APj@O{r@j}mt`Xj z5F2a+2A$e8MUw3#;1I&W!NI|f~ za@;d$*u}pZf2&wz0BYPbXz=b|mH*2?07u};*xkP>zR?1NxPK*==>Kbs@$)>7ixRYd zb$+Qxu7H-YMf@puK?5=Y=KN^?TKp}K;H-e0AS)2jBjGW|;Tme+t+|o@HTjzg5FG$C zcK5G|<~tw~xn$>x!Yk1JHTj$8fS@@@Q3H~D1`UI_)%jb5PEi01xG#VTmf`PO1uKuO z$vuMx^HsP9et*dvP+9=qX5?u9F8P;SgdF(6Dg{VHblMzDB(Z`7Ov2ACKv4mp17LvN z{hMKxcfm2n$WG=}D8K*l&>W=1)9cB}Ia=P$__+lrDgc83q+?O3>1o)Eox#5p=nKzg zGs0Vvli$%V!!0y${hNC)Q5eSGgkK`E*nl0>kbP7f^M8(~_83Ze{{}DnH~0R+udU&x zLyNzu0B;BDMPQZ$!Q)oF00lZsxd-wWHT3ecSHTVB#s4+nG0xzP2d)0i@v;lYd==iy z&y8M>5seHTey9AaG@@C^T#4wFpcd}?-5oXL-4x)Jlq5M`itj=UA?tH#bT2{_$JgXX z?*vKVVQfc^nfH~pW7YUa-R-LWGmDZDx<)d!UFOCQ0xLAl2?Fp`VQA3}gm0Y=3{ zG6gW*5q?Rn_Yc={AD?adb+l0000EWmrjOO-%qQ00008000000002eQkwn)s|F zz+9Z>Qc5~HV(FW0z@Vp|lfzx`#Ec)t&XXe`yZAlR+Z6%Cj`9Fye*q0d-OERu2p`NG zFyn`_wGD8E;!Ctu5gf$ypkmLAfKUUD*WRWGPS-_yaA9j2;D6G^&pD@@-KSv7<{&73 zI2$qot`z(#K3LpH4+yrY0kVsK@#>X)DP_ANSlB6X;zzNk8z3S06(;xp6r6)M&S}LB zaJk~A^jG-%2;_9Svs?~><9A_8H=-Xu^wiU<>!F8%rqS9*G(Rv0+W3)tx7?c=Ai{uB z((dKKXXijWtbeiiDz4@zj#+#S|59ipT!_6Df47ZjrgmBcFgKx9pZ8jXuoHk5JO0(4&!V)5@@4&N^GNeD}9{t-rJ4mhdcTi{1;d*WA} z(*Lm_Q2f(#!0XKOZlrpzB*#QB`0O8WJ;mDldjwzdUVl&Kjp#uV+>fFJML>9HvIhkS zJBoA6dzatIzsQ63M@gC_h)p>1kv^8|02jXzcj!^vY$uT3g0*n8*!-sIr$QPY+@~UJ zS@Lgw7(v1?eAmhj@gOJwBL^Y3e=A$E3g&k)u7>doIWQ3Kq1^aB*g)B(I2NGav_#Ztsc2)pr__*H?ZL!qHi%jX}_2wRH~ xRPeJ7*?gpjOByfih1V=!&7A$`L`O#u{Qw#rO;a}DuAu+`002ovPDHLkV1gf`F0KFo delta 638 zcmV-^0)hSe1eOJmBYyw^b5ch_0Itp)=>Px%Hc3Q5RCt{2oZE84APhvI)Bpcv`b0t< zzzD6h;IK1&@whj{-(5RQ(BifjW4rOLIPtQ!1N$uOB)bw!0_4I6o0|!xo8h2Y)JzyUHp_% zNXZ<#Yz~~_hqECw;7Y--;)BKY^nhTi8jxN5%!~28?u{{SR|E|^1Wx=Y_H+Xhf?r{A z|4+_2c;cFNxB-_dehBZvUuU4QA%I#g2hQ=Eut)E%Ccie)3j^pZG#jAw;mvo5DU^k%IIsC|5@VD=G+{Qn!=+@-$<97%5LQ!=yt^exV zFw?<5WOtwNcIIXB8-o5{@YYoX6i77ytQsW7`1)bV<0ORLd@6oXAnN9wqEO4{AJK%Z z;-G>@e)o(gAL${>;*Wn(JQV+%z8vc43Hk&6*@(2SA3{q2000hUSV?A0O#mtY000O8 Y00000007cclK=n!07*qoM6N<$f)qP3EC2ui diff --git a/sprites/player/mc-walk-up.png b/sprites/player/mc-walk-up.png index 517f404dd779263fb757a26c8f80e4f1489a63c1..f2c06d01c9142f8e157322e6cff4be7e3cdd139f 100644 GIT binary patch delta 466 zcmV;@0WJQ31nUEkBYy$1NkldM5Q_eN$AvosQh&+B0;Hf~0a8#!E5KSx zDYYK=JcrLit_nO*I{(rFd_@9UYo*q@@%r|HWkvcgzW%E)=xuO^^|H^2-R_M5I`A-W_ zYvlC_2*S_e=>iaC{g+=6h#(?y{pVX0W>I06|zMvVZ;d{n_U@ECtfD}|LKnkiTeL(V)^2L3?iQ~!thkVrosY{OIq#{2VU;035*VRrd)*sLK ztJXfz{5Qnl!q*nyQ4olQZ}RtA9fO%~y$h~iud78qHU=~Q7umGccIh;mkpKVy07*qo IM6N<$f~3IgQUCw| delta 487 zcmVPx$ph-kQRCt{2oZAwDFbqUn|No!sQyCl! zG?%hXX7`B^hqD`Fm59_5TkW)6VJ>hApWkX4S%5Zp4C#US6|xvc7GT8Q!2|OPr8SEz zz#V%B56myn#~D7eKf0LTw*N<(21IH$T-GK?mtWd|=?Wke^MCt3FWd@9B@-Kvf{G1D zK^3h5Ybm9)HvWondOYN>0uxG?U)q3M6rk2xT5AWdZ`ZoK?#y3&^Gh8cgbwS)=-Y;4 zi}+_B7lmKSXMUgj5|hKWe|YD47C|%GSk7mDTYmF*z!#SNt;PJd{83Iq(1TqxUn{il zNB(RBYJ+TFfPWzTEIIxZWd%fk&Y}5Qp?yE{%_kv_$6w(g6F+5k$qINo1L|5m3ls2{ zhDz z=5McP4=()3Hzy+hzX{McNP=AakoHocApBDB9@P9V6axtHxJT-a0000EWmrjOO-%qQ d00008000000002eQ79etuFeXL*tQ{df vu=-DE1ypH)Jvvai1Bg0fxKayr3s`MmM-|u3P|Lvs00000NkvXXu0mjffa7J< literal 0 HcmV?d00001 diff --git a/sprites_orig/player/mc-walk-bottom.png b/sprites_orig/player/mc-walk-bottom.png new file mode 100644 index 0000000000000000000000000000000000000000..15ae87a53a4e017ba3f409c4c14aebce417ace08 GIT binary patch literal 651 zcmV;60(AX}P)001Be1^@s6m49>f00001b5ch_0Itp) z=>Px%D@jB_RCt{2TETY1APj@O{r@j}mt`Xj5F2a+2A$e8MUw3#;1I&W!NI|f~a@;d$*u}pZf2&wz0BYPbXz=b|mH*2? z07u};*xkP>zR?1NxFwh9|7(o#^E{7>610DHeyK>VfR?dE{3&-q12O^T{AmAL{4I~* ztbm*#D-h8m;W5VH8fxFIxsm=g`I`z59RM_T_pgcOJ0KFdWao;)E71Nm`J3l}pgBlU z1Co0N4THGV`CEieQ2-3MFMtY`;qO`nE03+oJ%a}GRk#O!$sABx0N!TgX#Xzxmt2G# z_`xa#NJMnn984s!f&@&$&n-Yv0iXk5fZhF@VU>5mF~-PF=2a-a|MAcqq{P$f$;mld z-p%;A1t=;2g8-ysQK{)^*o>XQzZB>T&t@~iTauIC(J#X-G;sZ!doNKK#@~crBC^qTIe1i|B0y#NI|Ot}a07d7Eoj}eUw9e$_$t2Cln$Xto&m7o^x``sNi z>0_6vx-(NACnl;bBLPnfH~pW7YUa-R-LWGmDZDx< z)d!UFOCQ0xLAl2?Fp`VQA3}gm0Y=3{G6gW*5q?Rn_Yc={AD?adb+l0000E lWmrjOO-%qQ00008000000002eQ001Be1^@s6m49>f00001b5ch_0Itp) z=>Px%Hc3Q5RCt{2oZE84APhvI)Bpcv`b0ttQ z!1N$uOB)bw!0_4I6v61ZXb&cANdqoj{FG8i$sD_E4xHkLvmrC!O2MzLfibQZGUvvVMwfmwVJS8_A6 z_!54WYZETS-ip85Ml@49y#z2fp+)ywy@aq6fEGLc$I4;`JUSZIFWbOQ>bz|p{-i`R zVBYm-A9u0%S1*UJm--}xB{u&Eqq7E_l=Da62du^~2Bo< zNBUT90Azk6Zr7u@*+HN_3vR%r&$r?ueP}#r`7>`^?7{EXfFOni+r@*!0AM$u**W~k zTkyB@e)o(gAL${>;*Wn(JQV+%z8vc43Hk&6 w*@(2SA3{q2000hUSV?A0O#mtY000O800000007cclK=n!07*qoM6N<$g3qurlK=n! literal 0 HcmV?d00001 diff --git a/sprites_orig/player/mc-walk-up.png b/sprites_orig/player/mc-walk-up.png new file mode 100644 index 0000000000000000000000000000000000000000..517f404dd779263fb757a26c8f80e4f1489a63c1 GIT binary patch literal 512 zcmV+b0{{JqP)001Be1^@s6m49>f00001b5ch_0Itp) z=>Px$ph-kQRCt{2oZAwDFbqUn|No!sQyCl!G?%hXX7`B^hqD`Fm59_5TkW)6VJ>hA zpWkX4S%5Zp4C#US6|xvc7GT8Q!2|OPr8SEzz#V%B56myn#~D7eKf0LTw*N<(21IH$ zT-GK?mtWd|=?Wke^ZPz8+zLn~6C03%iVa9X6|DhlDW$YF{)%yWJmjwe6H1p~+JIXW zpw?PiYX`4y*Sfs!%wK%-OC2AC4(r9}+lFI{_-7v%gF5csm2?T0ILB@Rx{uU%qMu9L;@Rn1w~;dwM|T|LH1EzUd?Q z-0d$6Lp6L)4@myy4DNxyEV~zf)}UowU-kl!AD)H%Nk9{E+rip&TF0000