first commit

This commit is contained in:
2026-05-14 16:01:30 +09:00
commit ea31d5a4e0
11929 changed files with 830208 additions and 0 deletions

55
.gitattributes vendored Normal file
View File

@@ -0,0 +1,55 @@
## Unity ##
*.cs diff=csharp text
*.cginc text
*.shader text
*.mat merge=unityyamlmerge eol=lf
*.physicsMaterial2D merge=unityyamlmerge eol=lf
*.physicMaterial merge=unityyamlmerge eol=lf
*.meta merge=unityyamlmerge eol=lf
*.controller merge=unityyamlmerge eol=lf
## git-lfs ##
*.anim filter=lfs diff=lfs merge=lfs -text
*.asset filter=lfs diff=lfs merge=lfs -text
*.prefab filter=lfs diff=lfs merge=lfs -text
*.unity filter=lfs diff=lfs merge=lfs -text
#Image
*.jpg filter=lfs diff=lfs merge=lfs -text
*.jpeg filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.gif filter=lfs diff=lfs merge=lfs -text
*.psd filter=lfs diff=lfs merge=lfs -text
*.ai filter=lfs diff=lfs merge=lfs -text
#Audio
*.mp3 filter=lfs diff=lfs merge=lfs -text
*.wav filter=lfs diff=lfs merge=lfs -text
*.ogg filter=lfs diff=lfs merge=lfs -text
#Video
*.mp4 filter=lfs diff=lfs merge=lfs -text
*.mov filter=lfs diff=lfs merge=lfs -text
#3D Object
*.FBX filter=lfs diff=lfs merge=lfs -text
*.fbx filter=lfs diff=lfs merge=lfs -text
*.blend filter=lfs diff=lfs merge=lfs -text
*.obj filter=lfs diff=lfs merge=lfs -text
#ETC
*.a filter=lfs diff=lfs merge=lfs -text
*.exr filter=lfs diff=lfs merge=lfs -text
*.tga filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.dll filter=lfs diff=lfs merge=lfs -text
*.unitypackage filter=lfs diff=lfs merge=lfs -text
*.aif filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.rns filter=lfs diff=lfs merge=lfs -text
*.reason filter=lfs diff=lfs merge=lfs -text
*.lxo filter=lfs diff=lfs merge=lfs -text

76
.gitignore vendored Normal file
View File

@@ -0,0 +1,76 @@
# ---> Unity
# This .gitignore file should be placed at the root of your Unity project directory
#
# Get latest from https://github.com/github/gitignore/blob/main/Unity.gitignore
#
/[Ll]ibrary/
/[Tt]emp/
/[Oo]bj/
/[Bb]uild/
/[Bb]uilds/
/[Ll]ogs/
/[Uu]ser[Ss]ettings/
# MemoryCaptures can get excessive in size.
# They also could contain extremely sensitive data
/[Mm]emoryCaptures/
# Recordings can get excessive in size
/[Rr]ecordings/
# Uncomment this line if you wish to ignore the asset store tools plugin
# /[Aa]ssets/AssetStoreTools*
# Autogenerated Jetbrains Rider plugin
/[Aa]ssets/Plugins/Editor/JetBrains*
# Visual Studio cache directory
.vs/
# Gradle cache directory
.gradle/
# Autogenerated VS/MD/Consulo solution and project files
ExportedObj/
.consulo/
*.csproj
*.unityproj
*.sln
*.slnx
*.suo
*.tmp
*.user
*.userprefs
*.pidb
*.booproj
*.svd
*.pdb
*.mdb
*.opendb
*.VC.db
# Unity3D generated meta files
*.pidb.meta
*.pdb.meta
*.mdb.meta
# Unity3D generated file on crash reports
sysinfo.txt
# Builds
*.apk
*.aab
*.unitypackage
*.unitypackage.meta
*.app
# Crashlytics generated file
crashlytics-build.properties
# Packed Addressables
/[Aa]ssets/[Aa]ddressable[Aa]ssets[Dd]ata/*/*.bin*
# Temporary auto-generated Android Assets
/[Aa]ssets/[Ss]treamingAssets/aa.meta
/[Aa]ssets/[Ss]treamingAssets/aa/*

5
.vscode/extensions.json vendored Normal file
View File

@@ -0,0 +1,5 @@
{
"recommendations": [
"visualstudiotoolsforunity.vstuc"
]
}

10
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,10 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Attach to Unity",
"type": "vstuc",
"request": "attach"
}
]
}

71
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,71 @@
{
"files.exclude": {
"**/.DS_Store": true,
"**/.git": true,
"**/.vs": true,
"**/.gitmodules": true,
"**/.vsconfig": true,
"**/*.booproj": true,
"**/*.pidb": true,
"**/*.suo": true,
"**/*.user": true,
"**/*.userprefs": true,
"**/*.unityproj": true,
"**/*.dll": true,
"**/*.exe": true,
"**/*.pdf": true,
"**/*.mid": true,
"**/*.midi": true,
"**/*.wav": true,
"**/*.gif": true,
"**/*.ico": true,
"**/*.jpg": true,
"**/*.jpeg": true,
"**/*.png": true,
"**/*.psd": true,
"**/*.tga": true,
"**/*.tif": true,
"**/*.tiff": true,
"**/*.3ds": true,
"**/*.3DS": true,
"**/*.fbx": true,
"**/*.FBX": true,
"**/*.lxo": true,
"**/*.LXO": true,
"**/*.ma": true,
"**/*.MA": true,
"**/*.obj": true,
"**/*.OBJ": true,
"**/*.asset": true,
"**/*.cubemap": true,
"**/*.flare": true,
"**/*.mat": true,
"**/*.meta": true,
"**/*.prefab": true,
"**/*.unity": true,
"build/": true,
"Build/": true,
"Library/": true,
"library/": true,
"obj/": true,
"Obj/": true,
"Logs/": true,
"logs/": true,
"ProjectSettings/": true,
"UserSettings/": true,
"temp/": true,
"Temp/": true
},
"files.associations": {
"*.asset": "yaml",
"*.meta": "yaml",
"*.prefab": "yaml",
"*.unity": "yaml",
},
"explorer.fileNesting.enabled": true,
"explorer.fileNesting.patterns": {
"*.sln": "*.csproj",
"*.slnx": "*.csproj"
},
"dotnet.defaultSolution": "Unity_2D_WhiteAction.slnx"
}

8
Assets/01_Scenes.meta Normal file
View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 131a6b21c8605f84396be9f6751fb6e3
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

BIN
Assets/01_Scenes/GameScene.unity LFS Normal file

Binary file not shown.

View File

@@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: 4e2d2b25a1801c647ae6bb08c497a506
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

8
Assets/02_Scripts.meta Normal file
View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: c49682cdd43205349bad3f168af200a3
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 180ac6b7dcd0f9f49a6c365242fbb42b
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,168 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was auto-generated by com.unity.inputsystem:InputActionCodeGenerator
// version 1.18.0
// from Assets/11_Input/GameInput.inputactions
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine.InputSystem;
using UnityEngine.InputSystem.Utilities;
/// <summary>
/// Provides programmatic access to <see cref="InputActionAsset" />, <see cref="InputActionMap" />, <see cref="InputAction" /> and <see cref="InputControlScheme" /> instances defined in asset "Assets/11_Input/GameInput.inputactions".
/// </summary>
/// <remarks>
/// This class is source generated and any manual edits will be discarded if the associated asset is reimported or modified.
/// </remarks>
/// <example>
/// <code>
/// using namespace UnityEngine;
/// using UnityEngine.InputSystem;
///
/// // Example of using an InputActionMap named "Player" from a UnityEngine.MonoBehaviour implementing callback interface.
/// public class Example : MonoBehaviour, MyActions.IPlayerActions
/// {
/// private MyActions_Actions m_Actions; // Source code representation of asset.
/// private MyActions_Actions.PlayerActions m_Player; // Source code representation of action map.
///
/// void Awake()
/// {
/// m_Actions = new MyActions_Actions(); // Create asset object.
/// m_Player = m_Actions.Player; // Extract action map object.
/// m_Player.AddCallbacks(this); // Register callback interface IPlayerActions.
/// }
///
/// void OnDestroy()
/// {
/// m_Actions.Dispose(); // Destroy asset object.
/// }
///
/// void OnEnable()
/// {
/// m_Player.Enable(); // Enable all actions within map.
/// }
///
/// void OnDisable()
/// {
/// m_Player.Disable(); // Disable all actions within map.
/// }
///
/// #region Interface implementation of MyActions.IPlayerActions
///
/// // Invoked when "Move" action is either started, performed or canceled.
/// public void OnMove(InputAction.CallbackContext context)
/// {
/// Debug.Log($"OnMove: {context.ReadValue&lt;Vector2&gt;()}");
/// }
///
/// // Invoked when "Attack" action is either started, performed or canceled.
/// public void OnAttack(InputAction.CallbackContext context)
/// {
/// Debug.Log($"OnAttack: {context.ReadValue&lt;float&gt;()}");
/// }
///
/// #endregion
/// }
/// </code>
/// </example>
public partial class @GameInput: IInputActionCollection2, IDisposable
{
/// <summary>
/// Provides access to the underlying asset instance.
/// </summary>
public InputActionAsset asset { get; }
/// <summary>
/// Constructs a new instance.
/// </summary>
public @GameInput()
{
asset = InputActionAsset.FromJson(@"{
""version"": 0,
""name"": ""GameInput"",
""maps"": [],
""controlSchemes"": []
}");
}
~@GameInput()
{
}
/// <summary>
/// Destroys this asset and all associated <see cref="InputAction"/> instances.
/// </summary>
public void Dispose()
{
UnityEngine.Object.Destroy(asset);
}
/// <inheritdoc cref="UnityEngine.InputSystem.InputActionAsset.bindingMask" />
public InputBinding? bindingMask
{
get => asset.bindingMask;
set => asset.bindingMask = value;
}
/// <inheritdoc cref="UnityEngine.InputSystem.InputActionAsset.devices" />
public ReadOnlyArray<InputDevice>? devices
{
get => asset.devices;
set => asset.devices = value;
}
/// <inheritdoc cref="UnityEngine.InputSystem.InputActionAsset.controlSchemes" />
public ReadOnlyArray<InputControlScheme> controlSchemes => asset.controlSchemes;
/// <inheritdoc cref="UnityEngine.InputSystem.InputActionAsset.Contains(InputAction)" />
public bool Contains(InputAction action)
{
return asset.Contains(action);
}
/// <inheritdoc cref="UnityEngine.InputSystem.InputActionAsset.GetEnumerator()" />
public IEnumerator<InputAction> GetEnumerator()
{
return asset.GetEnumerator();
}
/// <inheritdoc cref="IEnumerable.GetEnumerator()" />
IEnumerator IEnumerable.GetEnumerator()
{
return GetEnumerator();
}
/// <inheritdoc cref="UnityEngine.InputSystem.InputActionAsset.Enable()" />
public void Enable()
{
asset.Enable();
}
/// <inheritdoc cref="UnityEngine.InputSystem.InputActionAsset.Disable()" />
public void Disable()
{
asset.Disable();
}
/// <inheritdoc cref="UnityEngine.InputSystem.InputActionAsset.bindings" />
public IEnumerable<InputBinding> bindings => asset.bindings;
/// <inheritdoc cref="UnityEngine.InputSystem.InputActionAsset.FindAction(string, bool)" />
public InputAction FindAction(string actionNameOrId, bool throwIfNotFound = false)
{
return asset.FindAction(actionNameOrId, throwIfNotFound);
}
/// <inheritdoc cref="UnityEngine.InputSystem.InputActionAsset.FindBinding(InputBinding, out InputAction)" />
public int FindBinding(InputBinding bindingMask, out InputAction action)
{
return asset.FindBinding(bindingMask, out action);
}
}

View File

@@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: 91a599a01d4b8024984975ce070369dc

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 28108eb1524e3b142a4ec30268d4d51f
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,16 @@
using UnityEngine;
public class PlayerController : MonoBehaviour
{
// Start is called once before the first execution of Update after the MonoBehaviour is created
void Start()
{
}
// Update is called once per frame
void Update()
{
}
}

View File

@@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: c6ec44982f985784e8ac13c30681e72f

8
Assets/03_Character.meta Normal file
View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: c4775ffb6d1eb47dcae609c01ce27351
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: b6b1ce56e596bf8468e6dbe25e37ba11
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: a9d83a37603b7684882030d0778d2df8
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

View File

@@ -0,0 +1,15 @@
fileFormatVersion: 2
guid: ee68c7ed960643d4f9960218158179d1
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 7400000
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 221542
packageName: Pixel Prototype Player Sprites
packageVersion: 1.3
assetPath: Assets/DeadRevolver/PixelPrototypePlayerSprites/Art/Animations/AirSlash.anim
uploadId: 701437

Binary file not shown.

View File

@@ -0,0 +1,15 @@
fileFormatVersion: 2
guid: f3847ecc530c1b14785765847e49cd96
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 7400000
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 221542
packageName: Pixel Prototype Player Sprites
packageVersion: 1.3
assetPath: Assets/DeadRevolver/PixelPrototypePlayerSprites/Art/Animations/AirSlashDown.anim
uploadId: 701437

Binary file not shown.

View File

@@ -0,0 +1,15 @@
fileFormatVersion: 2
guid: 689d72ebd134df14fad38b713d6ad53a
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 7400000
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 221542
packageName: Pixel Prototype Player Sprites
packageVersion: 1.3
assetPath: Assets/DeadRevolver/PixelPrototypePlayerSprites/Art/Animations/AirSlashUp.anim
uploadId: 701437

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 8ecb8695bf73d8744bb282d398ef0247
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,15 @@
fileFormatVersion: 2
guid: c794c61eb96248f4fbcd054821a369cd
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 9100000
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 221542
packageName: Pixel Prototype Player Sprites
packageVersion: 1.3
assetPath: Assets/DeadRevolver/PixelPrototypePlayerSprites/Art/Animations/Animators/PlayerAnimator.controller
uploadId: 701437

Binary file not shown.

View File

@@ -0,0 +1,15 @@
fileFormatVersion: 2
guid: 6b8729b7a0a214d4faec9c96a8eb113f
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 7400000
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 221542
packageName: Pixel Prototype Player Sprites
packageVersion: 1.3
assetPath: Assets/DeadRevolver/PixelPrototypePlayerSprites/Art/Animations/BowAim.anim
uploadId: 701437

Binary file not shown.

View File

@@ -0,0 +1,15 @@
fileFormatVersion: 2
guid: 9cd89d08c803f1645b8b61d03d9bf326
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 7400000
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 221542
packageName: Pixel Prototype Player Sprites
packageVersion: 1.3
assetPath: Assets/DeadRevolver/PixelPrototypePlayerSprites/Art/Animations/BowDraw.anim
uploadId: 701437

Binary file not shown.

View File

@@ -0,0 +1,15 @@
fileFormatVersion: 2
guid: 10573f78446dc8d48bdd19cad83f3ef0
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 7400000
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 221542
packageName: Pixel Prototype Player Sprites
packageVersion: 1.3
assetPath: Assets/DeadRevolver/PixelPrototypePlayerSprites/Art/Animations/BowFire.anim
uploadId: 701437

Binary file not shown.

View File

@@ -0,0 +1,15 @@
fileFormatVersion: 2
guid: 5725eee5f0e64fe438d0e45c7609e0db
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 7400000
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 221542
packageName: Pixel Prototype Player Sprites
packageVersion: 1.3
assetPath: Assets/DeadRevolver/PixelPrototypePlayerSprites/Art/Animations/BowFull.anim
uploadId: 701437

Binary file not shown.

View File

@@ -0,0 +1,15 @@
fileFormatVersion: 2
guid: e15ca4d4e10cec845825905037c0b472
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 7400000
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 221542
packageName: Pixel Prototype Player Sprites
packageVersion: 1.3
assetPath: Assets/DeadRevolver/PixelPrototypePlayerSprites/Art/Animations/ClimbDownLeft.anim
uploadId: 701437

Binary file not shown.

View File

@@ -0,0 +1,15 @@
fileFormatVersion: 2
guid: f37da6ac3fccfc74e908b8b7e4b9f3c3
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 7400000
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 221542
packageName: Pixel Prototype Player Sprites
packageVersion: 1.3
assetPath: Assets/DeadRevolver/PixelPrototypePlayerSprites/Art/Animations/ClimbDownRight.anim
uploadId: 701437

Binary file not shown.

View File

@@ -0,0 +1,15 @@
fileFormatVersion: 2
guid: ca085c3570db12b4091df4e234b1b27b
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 7400000
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 221542
packageName: Pixel Prototype Player Sprites
packageVersion: 1.3
assetPath: Assets/DeadRevolver/PixelPrototypePlayerSprites/Art/Animations/ClimbGrab.anim
uploadId: 701437

Binary file not shown.

View File

@@ -0,0 +1,15 @@
fileFormatVersion: 2
guid: 7fbbd99a79c41804481be4257401d311
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 7400000
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 221542
packageName: Pixel Prototype Player Sprites
packageVersion: 1.3
assetPath: Assets/DeadRevolver/PixelPrototypePlayerSprites/Art/Animations/ClimbIdle.anim
uploadId: 701437

View File

@@ -0,0 +1,15 @@
fileFormatVersion: 2
guid: aada906b8297871458122f8836c0699c
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 7400000
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 221542
packageName: Pixel Prototype Player Sprites
packageVersion: 1.3
assetPath: Assets/DeadRevolver/PixelPrototypePlayerSprites/Art/Animations/ClimbJumpPrepare.anim
uploadId: 701437

Binary file not shown.

View File

@@ -0,0 +1,15 @@
fileFormatVersion: 2
guid: 21452fb26b8d36e43bf4249f7d676bb8
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 7400000
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 221542
packageName: Pixel Prototype Player Sprites
packageVersion: 1.3
assetPath: Assets/DeadRevolver/PixelPrototypePlayerSprites/Art/Animations/ClimbLeft.anim
uploadId: 701437

Binary file not shown.

View File

@@ -0,0 +1,15 @@
fileFormatVersion: 2
guid: e1b481cf5a464ff468e3c1c39000bdf4
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 7400000
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 221542
packageName: Pixel Prototype Player Sprites
packageVersion: 1.3
assetPath: Assets/DeadRevolver/PixelPrototypePlayerSprites/Art/Animations/ClimbRight.anim
uploadId: 701437

Binary file not shown.

View File

@@ -0,0 +1,15 @@
fileFormatVersion: 2
guid: 5a11cd1fc53764b479b17bae2fdfb89e
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 7400000
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 221542
packageName: Pixel Prototype Player Sprites
packageVersion: 1.3
assetPath: Assets/DeadRevolver/PixelPrototypePlayerSprites/Art/Animations/ClimbUpLeft.anim
uploadId: 701437

Binary file not shown.

View File

@@ -0,0 +1,15 @@
fileFormatVersion: 2
guid: fc4d2ad42e9420d438cb15b0e240fd17
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 7400000
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 221542
packageName: Pixel Prototype Player Sprites
packageVersion: 1.3
assetPath: Assets/DeadRevolver/PixelPrototypePlayerSprites/Art/Animations/ClimbUpRight.anim
uploadId: 701437

Binary file not shown.

View File

@@ -0,0 +1,15 @@
fileFormatVersion: 2
guid: 9723596acd0b2a34d9ce0c835ec80b66
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 7400000
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 221542
packageName: Pixel Prototype Player Sprites
packageVersion: 1.3
assetPath: Assets/DeadRevolver/PixelPrototypePlayerSprites/Art/Animations/ComboAttackA.anim
uploadId: 701437

Binary file not shown.

View File

@@ -0,0 +1,15 @@
fileFormatVersion: 2
guid: f7c34fe46725d464ea953f1cbe1b2de3
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 7400000
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 221542
packageName: Pixel Prototype Player Sprites
packageVersion: 1.3
assetPath: Assets/DeadRevolver/PixelPrototypePlayerSprites/Art/Animations/ComboAttackB.anim
uploadId: 701437

Binary file not shown.

View File

@@ -0,0 +1,15 @@
fileFormatVersion: 2
guid: ba4b61139a72d844f8166d90bc40ed3e
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 7400000
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 221542
packageName: Pixel Prototype Player Sprites
packageVersion: 1.3
assetPath: Assets/DeadRevolver/PixelPrototypePlayerSprites/Art/Animations/ComboAttackC.anim
uploadId: 701437

Binary file not shown.

View File

@@ -0,0 +1,15 @@
fileFormatVersion: 2
guid: d1f2701508ebb5043bb1d8d451dab630
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 7400000
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 221542
packageName: Pixel Prototype Player Sprites
packageVersion: 1.3
assetPath: Assets/DeadRevolver/PixelPrototypePlayerSprites/Art/Animations/ComboAttackD.anim
uploadId: 701437

Binary file not shown.

View File

@@ -0,0 +1,15 @@
fileFormatVersion: 2
guid: 6976990c5deb7ce42adcc22d80e1edb7
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 7400000
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 221542
packageName: Pixel Prototype Player Sprites
packageVersion: 1.3
assetPath: Assets/DeadRevolver/PixelPrototypePlayerSprites/Art/Animations/Crawl.anim
uploadId: 701437

Binary file not shown.

View File

@@ -0,0 +1,15 @@
fileFormatVersion: 2
guid: 7086770aa204ee2408b4c6f0c2306b40
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 7400000
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 221542
packageName: Pixel Prototype Player Sprites
packageVersion: 1.3
assetPath: Assets/DeadRevolver/PixelPrototypePlayerSprites/Art/Animations/Crouch.anim
uploadId: 701437

Binary file not shown.

View File

@@ -0,0 +1,15 @@
fileFormatVersion: 2
guid: 3d266b198c7c7e24fb9ad13a9ce5c9eb
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 7400000
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 221542
packageName: Pixel Prototype Player Sprites
packageVersion: 1.3
assetPath: Assets/DeadRevolver/PixelPrototypePlayerSprites/Art/Animations/CrouchSlash.anim
uploadId: 701437

Binary file not shown.

View File

@@ -0,0 +1,15 @@
fileFormatVersion: 2
guid: 6598db482fa102b44877e11ee7b47b64
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 7400000
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 221542
packageName: Pixel Prototype Player Sprites
packageVersion: 1.3
assetPath: Assets/DeadRevolver/PixelPrototypePlayerSprites/Art/Animations/Dash.anim
uploadId: 701437

Binary file not shown.

View File

@@ -0,0 +1,15 @@
fileFormatVersion: 2
guid: ab00aa349409ab347abe53efb22c4c69
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 7400000
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 221542
packageName: Pixel Prototype Player Sprites
packageVersion: 1.3
assetPath: Assets/DeadRevolver/PixelPrototypePlayerSprites/Art/Animations/DashEnd.anim
uploadId: 701437

Binary file not shown.

View File

@@ -0,0 +1,15 @@
fileFormatVersion: 2
guid: 974d7aa5edf28ef4bb934402bafd900b
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 7400000
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 221542
packageName: Pixel Prototype Player Sprites
packageVersion: 1.3
assetPath: Assets/DeadRevolver/PixelPrototypePlayerSprites/Art/Animations/DashLoop.anim
uploadId: 701437

Binary file not shown.

View File

@@ -0,0 +1,15 @@
fileFormatVersion: 2
guid: 77c08443decfc9e4ca546def7719ab20
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 7400000
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 221542
packageName: Pixel Prototype Player Sprites
packageVersion: 1.3
assetPath: Assets/DeadRevolver/PixelPrototypePlayerSprites/Art/Animations/DashStart.anim
uploadId: 701437

Binary file not shown.

View File

@@ -0,0 +1,15 @@
fileFormatVersion: 2
guid: 5021f8f062c2ed74f8226175cdf33383
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 7400000
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 221542
packageName: Pixel Prototype Player Sprites
packageVersion: 1.3
assetPath: Assets/DeadRevolver/PixelPrototypePlayerSprites/Art/Animations/Death.anim
uploadId: 701437

Binary file not shown.

View File

@@ -0,0 +1,15 @@
fileFormatVersion: 2
guid: 887396e92dabf1f41924630403ec5f44
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 7400000
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 221542
packageName: Pixel Prototype Player Sprites
packageVersion: 1.3
assetPath: Assets/DeadRevolver/PixelPrototypePlayerSprites/Art/Animations/Die.anim
uploadId: 701437

Binary file not shown.

View File

@@ -0,0 +1,15 @@
fileFormatVersion: 2
guid: c673fb9e5c4a2ab4580af8dec27706aa
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 7400000
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 221542
packageName: Pixel Prototype Player Sprites
packageVersion: 1.3
assetPath: Assets/DeadRevolver/PixelPrototypePlayerSprites/Art/Animations/FishingCast.anim
uploadId: 701437

Binary file not shown.

View File

@@ -0,0 +1,15 @@
fileFormatVersion: 2
guid: 044916c2a3a79d54fbc079ee4c73f880
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 7400000
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 221542
packageName: Pixel Prototype Player Sprites
packageVersion: 1.3
assetPath: Assets/DeadRevolver/PixelPrototypePlayerSprites/Art/Animations/FishingCatch.anim
uploadId: 701437

Binary file not shown.

View File

@@ -0,0 +1,15 @@
fileFormatVersion: 2
guid: 15c637439e56fe64fb4c158b85c31ab2
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 7400000
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 221542
packageName: Pixel Prototype Player Sprites
packageVersion: 1.3
assetPath: Assets/DeadRevolver/PixelPrototypePlayerSprites/Art/Animations/FishingCharge.anim
uploadId: 701437

Binary file not shown.

View File

@@ -0,0 +1,15 @@
fileFormatVersion: 2
guid: 788afa9947b5d664ab4c94f82e0b737d
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 7400000
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 221542
packageName: Pixel Prototype Player Sprites
packageVersion: 1.3
assetPath: Assets/DeadRevolver/PixelPrototypePlayerSprites/Art/Animations/FishingIdle.anim
uploadId: 701437

Binary file not shown.

View File

@@ -0,0 +1,15 @@
fileFormatVersion: 2
guid: a7a502c7d5125444cbab4e851831cf7d
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 7400000
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 221542
packageName: Pixel Prototype Player Sprites
packageVersion: 1.3
assetPath: Assets/DeadRevolver/PixelPrototypePlayerSprites/Art/Animations/FishingPrepare.anim
uploadId: 701437

Binary file not shown.

View File

@@ -0,0 +1,15 @@
fileFormatVersion: 2
guid: 3dca970f6eee14e40810839f9daffac7
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 7400000
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 221542
packageName: Pixel Prototype Player Sprites
packageVersion: 1.3
assetPath: Assets/DeadRevolver/PixelPrototypePlayerSprites/Art/Animations/FishingReel.anim
uploadId: 701437

Binary file not shown.

View File

@@ -0,0 +1,15 @@
fileFormatVersion: 2
guid: dfcc53b0ac201f94b9b39ab4f851d18d
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 7400000
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 221542
packageName: Pixel Prototype Player Sprites
packageVersion: 1.3
assetPath: Assets/DeadRevolver/PixelPrototypePlayerSprites/Art/Animations/FishingStruggle.anim
uploadId: 701437

Binary file not shown.

View File

@@ -0,0 +1,15 @@
fileFormatVersion: 2
guid: 3c136ac963202ee429c417b3faa47cf1
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 7400000
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 221542
packageName: Pixel Prototype Player Sprites
packageVersion: 1.3
assetPath: Assets/DeadRevolver/PixelPrototypePlayerSprites/Art/Animations/FrontFlip.anim
uploadId: 701437

Binary file not shown.

View File

@@ -0,0 +1,15 @@
fileFormatVersion: 2
guid: 43a3597f5e5a1b646b018598197b92a6
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 7400000
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 221542
packageName: Pixel Prototype Player Sprites
packageVersion: 1.3
assetPath: Assets/DeadRevolver/PixelPrototypePlayerSprites/Art/Animations/GroundSlam.anim
uploadId: 701437

Binary file not shown.

View File

@@ -0,0 +1,15 @@
fileFormatVersion: 2
guid: 0551425c6222ed945aa956d67ea687f4
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 7400000
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 221542
packageName: Pixel Prototype Player Sprites
packageVersion: 1.3
assetPath: Assets/DeadRevolver/PixelPrototypePlayerSprites/Art/Animations/GunAim.anim
uploadId: 701437

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