tilemap地图
This commit is contained in:
parent
eec6138da9
commit
84a837782e
Binary file not shown.
@ -1,29 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b90b002a8cd137243a4b5e955f3b220f
|
||||
AudioImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 6
|
||||
defaultSettings:
|
||||
loadType: 0
|
||||
sampleRateSetting: 0
|
||||
sampleRateOverride: 44100
|
||||
compressionFormat: 1
|
||||
quality: 1
|
||||
conversionMode: 0
|
||||
platformSettingOverrides: {}
|
||||
forceToMono: 0
|
||||
normalize: 1
|
||||
preloadAudioData: 1
|
||||
loadInBackground: 0
|
||||
ambisonic: 0
|
||||
3D: 1
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 242591
|
||||
packageName: Free Casual Music Pack
|
||||
packageVersion: 1.0
|
||||
assetPath: Assets/FREE CASUAL MUSIC PACK/BONUS 1 - EXTRA FULL TRACK/TROPICAL GAME.wav
|
||||
uploadId: 553292
|
File diff suppressed because it is too large
Load Diff
28
Assets/Scipts/CameraController.cs
Normal file
28
Assets/Scipts/CameraController.cs
Normal file
@ -0,0 +1,28 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
public class CameraController : MonoBehaviour
|
||||
{
|
||||
[SerializeField] private Transform target;
|
||||
|
||||
[SerializeField] private Vector2 minMaxXY;
|
||||
|
||||
|
||||
void Start()
|
||||
{
|
||||
if(target == null)
|
||||
{
|
||||
Debug.Log("ûÕÒµ½½ÇɫλÖÃ");
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
private void LateUpdate()
|
||||
{
|
||||
|
||||
transform.position = new Vector3(Mathf.Clamp(target.position.x,-minMaxXY.x,minMaxXY.x) , Mathf.Clamp(target.position.y, -minMaxXY.y, minMaxXY.y), -10);
|
||||
}
|
||||
}
|
2
Assets/Scipts/CameraController.cs.meta
Normal file
2
Assets/Scipts/CameraController.cs.meta
Normal file
@ -0,0 +1,2 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 084a390559760dd42a253d191d51d50a
|
@ -1,18 +1,59 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
using UnityEngine.InputSystem;
|
||||
using UnityEngine.InputSystem.XR;
|
||||
|
||||
public class PlayerController : MonoBehaviour
|
||||
{
|
||||
// Start is called before the first frame update
|
||||
void Start()
|
||||
public PlayerInputController playerInputController; //输入事件
|
||||
|
||||
public Rigidbody2D rb;
|
||||
|
||||
public Vector2 inputDirection;//输入方向的数值
|
||||
public float moveSpeed;//速度
|
||||
private void Awake()
|
||||
{
|
||||
|
||||
|
||||
playerInputController = new PlayerInputController();
|
||||
rb = GetComponent<Rigidbody2D>();
|
||||
}
|
||||
|
||||
// Update is called once per frame
|
||||
void Start()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
private void OnEnable()
|
||||
{
|
||||
playerInputController.Enable();
|
||||
}
|
||||
|
||||
private void OnDisable()
|
||||
{
|
||||
playerInputController.Disable();
|
||||
}
|
||||
|
||||
|
||||
void Update()
|
||||
{
|
||||
|
||||
inputDirection = playerInputController.GamePlayer.Move.ReadValue<Vector2>();//读取数值 //wasd移动
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
private void FixedUpdate()
|
||||
{
|
||||
Move();
|
||||
}
|
||||
|
||||
public void Move()
|
||||
{
|
||||
rb.velocity = new Vector2(inputDirection.x * moveSpeed, inputDirection.y * moveSpeed); //wasd移动
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f5e512414f759ac49846388d8758ef16
|
||||
guid: 811d74df8c5c11c47869f442addb29cd
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: bf9415481c878ac4db7ef827036a1b67
|
||||
guid: 2a79194d72427d545a7d42b8db7d21a0
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
1239
Assets/Setting/InputsSystem/PlayerInputController.cs
Normal file
1239
Assets/Setting/InputsSystem/PlayerInputController.cs
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,2 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 9133563f90205874596ccc939429eb71
|
878
Assets/Setting/InputsSystem/PlayerInputController.inputactions
Normal file
878
Assets/Setting/InputsSystem/PlayerInputController.inputactions
Normal file
@ -0,0 +1,878 @@
|
||||
{
|
||||
"name": "PlayerInputController",
|
||||
"maps": [
|
||||
{
|
||||
"name": "GamePlayer",
|
||||
"id": "40e6d742-0a29-400b-aa8c-f86e5410664f",
|
||||
"actions": [
|
||||
{
|
||||
"name": "Move",
|
||||
"type": "Value",
|
||||
"id": "0b6553fe-343a-439e-a19f-b566f778f923",
|
||||
"expectedControlType": "Vector2",
|
||||
"processors": "",
|
||||
"interactions": "",
|
||||
"initialStateCheck": true
|
||||
},
|
||||
{
|
||||
"name": "Look",
|
||||
"type": "Value",
|
||||
"id": "e9eaaa89-1556-45a4-a035-03105d45c9bf",
|
||||
"expectedControlType": "Vector2",
|
||||
"processors": "",
|
||||
"interactions": "",
|
||||
"initialStateCheck": true
|
||||
},
|
||||
{
|
||||
"name": "Fire",
|
||||
"type": "Button",
|
||||
"id": "b0bcec4c-c4aa-41f3-a8fd-af02b1938959",
|
||||
"expectedControlType": "Button",
|
||||
"processors": "",
|
||||
"interactions": "",
|
||||
"initialStateCheck": false
|
||||
},
|
||||
{
|
||||
"name": "TouchPress",
|
||||
"type": "Button",
|
||||
"id": "183f2888-6556-415f-9237-afe36b3cadcc",
|
||||
"expectedControlType": "Button",
|
||||
"processors": "",
|
||||
"interactions": "",
|
||||
"initialStateCheck": false
|
||||
},
|
||||
{
|
||||
"name": "TouchPosition",
|
||||
"type": "Value",
|
||||
"id": "e401d8b5-43ef-4f02-bd4c-d84bef7acdd6",
|
||||
"expectedControlType": "Vector2",
|
||||
"processors": "",
|
||||
"interactions": "",
|
||||
"initialStateCheck": true
|
||||
}
|
||||
],
|
||||
"bindings": [
|
||||
{
|
||||
"name": "",
|
||||
"id": "978bfe49-cc26-4a3d-ab7b-7d7a29327403",
|
||||
"path": "<Gamepad>/leftStick",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": ";Gamepad",
|
||||
"action": "Move",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "WASD",
|
||||
"id": "00ca640b-d935-4593-8157-c05846ea39b3",
|
||||
"path": "Dpad",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "",
|
||||
"action": "Move",
|
||||
"isComposite": true,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "up",
|
||||
"id": "e2062cb9-1b15-46a2-838c-2f8d72a0bdd9",
|
||||
"path": "<Keyboard>/w",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": ";Keyboard&Mouse",
|
||||
"action": "Move",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": true
|
||||
},
|
||||
{
|
||||
"name": "up",
|
||||
"id": "8180e8bd-4097-4f4e-ab88-4523101a6ce9",
|
||||
"path": "<Keyboard>/upArrow",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": ";Keyboard&Mouse",
|
||||
"action": "Move",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": true
|
||||
},
|
||||
{
|
||||
"name": "down",
|
||||
"id": "320bffee-a40b-4347-ac70-c210eb8bc73a",
|
||||
"path": "<Keyboard>/s",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": ";Keyboard&Mouse",
|
||||
"action": "Move",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": true
|
||||
},
|
||||
{
|
||||
"name": "down",
|
||||
"id": "1c5327b5-f71c-4f60-99c7-4e737386f1d1",
|
||||
"path": "<Keyboard>/downArrow",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": ";Keyboard&Mouse",
|
||||
"action": "Move",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": true
|
||||
},
|
||||
{
|
||||
"name": "left",
|
||||
"id": "d2581a9b-1d11-4566-b27d-b92aff5fabbc",
|
||||
"path": "<Keyboard>/a",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": ";Keyboard&Mouse",
|
||||
"action": "Move",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": true
|
||||
},
|
||||
{
|
||||
"name": "left",
|
||||
"id": "2e46982e-44cc-431b-9f0b-c11910bf467a",
|
||||
"path": "<Keyboard>/leftArrow",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": ";Keyboard&Mouse",
|
||||
"action": "Move",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": true
|
||||
},
|
||||
{
|
||||
"name": "right",
|
||||
"id": "fcfe95b8-67b9-4526-84b5-5d0bc98d6400",
|
||||
"path": "<Keyboard>/d",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": ";Keyboard&Mouse",
|
||||
"action": "Move",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": true
|
||||
},
|
||||
{
|
||||
"name": "right",
|
||||
"id": "77bff152-3580-4b21-b6de-dcd0c7e41164",
|
||||
"path": "<Keyboard>/rightArrow",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": ";Keyboard&Mouse",
|
||||
"action": "Move",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": true
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "1635d3fe-58b6-4ba9-a4e2-f4b964f6b5c8",
|
||||
"path": "<XRController>/{Primary2DAxis}",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "XR",
|
||||
"action": "Move",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "3ea4d645-4504-4529-b061-ab81934c3752",
|
||||
"path": "<Joystick>/stick",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "Joystick",
|
||||
"action": "Move",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "c1f7a91b-d0fd-4a62-997e-7fb9b69bf235",
|
||||
"path": "<Gamepad>/rightStick",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": ";Gamepad",
|
||||
"action": "Look",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "8c8e490b-c610-4785-884f-f04217b23ca4",
|
||||
"path": "<Pointer>/delta",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": ";Keyboard&Mouse;Touch",
|
||||
"action": "Look",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "3e5f5442-8668-4b27-a940-df99bad7e831",
|
||||
"path": "<Joystick>/{Hatswitch}",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "Joystick",
|
||||
"action": "Look",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "143bb1cd-cc10-4eca-a2f0-a3664166fe91",
|
||||
"path": "<Gamepad>/rightTrigger",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": ";Gamepad",
|
||||
"action": "Fire",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "05f6913d-c316-48b2-a6bb-e225f14c7960",
|
||||
"path": "<Mouse>/leftButton",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": ";Keyboard&Mouse",
|
||||
"action": "Fire",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "886e731e-7071-4ae4-95c0-e61739dad6fd",
|
||||
"path": "<Touchscreen>/primaryTouch/tap",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": ";Touch",
|
||||
"action": "Fire",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "ee3d0cd2-254e-47a7-a8cb-bc94d9658c54",
|
||||
"path": "<Joystick>/trigger",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "Joystick",
|
||||
"action": "Fire",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "8255d333-5683-4943-a58a-ccb207ff1dce",
|
||||
"path": "<XRController>/{PrimaryAction}",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "XR",
|
||||
"action": "Fire",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "3099cfc7-9943-4cb9-878a-84b1bd4196d1",
|
||||
"path": "<Touchscreen>/Press",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "",
|
||||
"action": "TouchPress",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "de58b86f-9f10-45e9-aa8a-ff0f19d29ff8",
|
||||
"path": "<Touchscreen>/position",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "",
|
||||
"action": "TouchPosition",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "UI",
|
||||
"id": "99392e27-c139-49c8-a35b-0e94c831b304",
|
||||
"actions": [
|
||||
{
|
||||
"name": "Navigate",
|
||||
"type": "PassThrough",
|
||||
"id": "52727d9c-79f0-4c1c-8a3b-2c9ecbe15f60",
|
||||
"expectedControlType": "Vector2",
|
||||
"processors": "",
|
||||
"interactions": "",
|
||||
"initialStateCheck": false
|
||||
},
|
||||
{
|
||||
"name": "Submit",
|
||||
"type": "Button",
|
||||
"id": "7435a8e6-7ab7-4364-836a-c390696700d2",
|
||||
"expectedControlType": "Button",
|
||||
"processors": "",
|
||||
"interactions": "",
|
||||
"initialStateCheck": false
|
||||
},
|
||||
{
|
||||
"name": "Cancel",
|
||||
"type": "Button",
|
||||
"id": "2b52751d-d804-42e6-babd-e0155597ea71",
|
||||
"expectedControlType": "Button",
|
||||
"processors": "",
|
||||
"interactions": "",
|
||||
"initialStateCheck": false
|
||||
},
|
||||
{
|
||||
"name": "Point",
|
||||
"type": "PassThrough",
|
||||
"id": "c03ed6b5-d128-4ea7-b7b6-70d81902575d",
|
||||
"expectedControlType": "Vector2",
|
||||
"processors": "",
|
||||
"interactions": "",
|
||||
"initialStateCheck": true
|
||||
},
|
||||
{
|
||||
"name": "Click",
|
||||
"type": "PassThrough",
|
||||
"id": "df373aa2-203f-4ad6-8efc-9021c945c706",
|
||||
"expectedControlType": "Button",
|
||||
"processors": "",
|
||||
"interactions": "",
|
||||
"initialStateCheck": true
|
||||
},
|
||||
{
|
||||
"name": "ScrollWheel",
|
||||
"type": "PassThrough",
|
||||
"id": "a88b9033-832f-496f-b694-fee1ffcab764",
|
||||
"expectedControlType": "Vector2",
|
||||
"processors": "",
|
||||
"interactions": "",
|
||||
"initialStateCheck": false
|
||||
},
|
||||
{
|
||||
"name": "MiddleClick",
|
||||
"type": "PassThrough",
|
||||
"id": "eb45ea01-fe62-4d1c-9d33-0f34d1063849",
|
||||
"expectedControlType": "Button",
|
||||
"processors": "",
|
||||
"interactions": "",
|
||||
"initialStateCheck": false
|
||||
},
|
||||
{
|
||||
"name": "RightClick",
|
||||
"type": "PassThrough",
|
||||
"id": "255e619e-f016-4eaf-b206-f749e8dfcc2a",
|
||||
"expectedControlType": "Button",
|
||||
"processors": "",
|
||||
"interactions": "",
|
||||
"initialStateCheck": false
|
||||
},
|
||||
{
|
||||
"name": "TrackedDevicePosition",
|
||||
"type": "PassThrough",
|
||||
"id": "248ad21a-a502-45cb-9737-b54fdc5750d1",
|
||||
"expectedControlType": "Vector3",
|
||||
"processors": "",
|
||||
"interactions": "",
|
||||
"initialStateCheck": false
|
||||
},
|
||||
{
|
||||
"name": "TrackedDeviceOrientation",
|
||||
"type": "PassThrough",
|
||||
"id": "039946c0-10d8-445a-8c8a-93d552745d24",
|
||||
"expectedControlType": "Quaternion",
|
||||
"processors": "",
|
||||
"interactions": "",
|
||||
"initialStateCheck": false
|
||||
}
|
||||
],
|
||||
"bindings": [
|
||||
{
|
||||
"name": "Gamepad",
|
||||
"id": "809f371f-c5e2-4e7a-83a1-d867598f40dd",
|
||||
"path": "2DVector",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "",
|
||||
"action": "Navigate",
|
||||
"isComposite": true,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "up",
|
||||
"id": "14a5d6e8-4aaf-4119-a9ef-34b8c2c548bf",
|
||||
"path": "<Gamepad>/leftStick/up",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": ";Gamepad",
|
||||
"action": "Navigate",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": true
|
||||
},
|
||||
{
|
||||
"name": "up",
|
||||
"id": "9144cbe6-05e1-4687-a6d7-24f99d23dd81",
|
||||
"path": "<Gamepad>/rightStick/up",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": ";Gamepad",
|
||||
"action": "Navigate",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": true
|
||||
},
|
||||
{
|
||||
"name": "down",
|
||||
"id": "2db08d65-c5fb-421b-983f-c71163608d67",
|
||||
"path": "<Gamepad>/leftStick/down",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": ";Gamepad",
|
||||
"action": "Navigate",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": true
|
||||
},
|
||||
{
|
||||
"name": "down",
|
||||
"id": "58748904-2ea9-4a80-8579-b500e6a76df8",
|
||||
"path": "<Gamepad>/rightStick/down",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": ";Gamepad",
|
||||
"action": "Navigate",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": true
|
||||
},
|
||||
{
|
||||
"name": "left",
|
||||
"id": "8ba04515-75aa-45de-966d-393d9bbd1c14",
|
||||
"path": "<Gamepad>/leftStick/left",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": ";Gamepad",
|
||||
"action": "Navigate",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": true
|
||||
},
|
||||
{
|
||||
"name": "left",
|
||||
"id": "712e721c-bdfb-4b23-a86c-a0d9fcfea921",
|
||||
"path": "<Gamepad>/rightStick/left",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": ";Gamepad",
|
||||
"action": "Navigate",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": true
|
||||
},
|
||||
{
|
||||
"name": "right",
|
||||
"id": "fcd248ae-a788-4676-a12e-f4d81205600b",
|
||||
"path": "<Gamepad>/leftStick/right",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": ";Gamepad",
|
||||
"action": "Navigate",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": true
|
||||
},
|
||||
{
|
||||
"name": "right",
|
||||
"id": "1f04d9bc-c50b-41a1-bfcc-afb75475ec20",
|
||||
"path": "<Gamepad>/rightStick/right",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": ";Gamepad",
|
||||
"action": "Navigate",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": true
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "fb8277d4-c5cd-4663-9dc7-ee3f0b506d90",
|
||||
"path": "<Gamepad>/dpad",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": ";Gamepad",
|
||||
"action": "Navigate",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "Joystick",
|
||||
"id": "e25d9774-381c-4a61-b47c-7b6b299ad9f9",
|
||||
"path": "2DVector",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "",
|
||||
"action": "Navigate",
|
||||
"isComposite": true,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "up",
|
||||
"id": "3db53b26-6601-41be-9887-63ac74e79d19",
|
||||
"path": "<Joystick>/stick/up",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "Joystick",
|
||||
"action": "Navigate",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": true
|
||||
},
|
||||
{
|
||||
"name": "down",
|
||||
"id": "0cb3e13e-3d90-4178-8ae6-d9c5501d653f",
|
||||
"path": "<Joystick>/stick/down",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "Joystick",
|
||||
"action": "Navigate",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": true
|
||||
},
|
||||
{
|
||||
"name": "left",
|
||||
"id": "0392d399-f6dd-4c82-8062-c1e9c0d34835",
|
||||
"path": "<Joystick>/stick/left",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "Joystick",
|
||||
"action": "Navigate",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": true
|
||||
},
|
||||
{
|
||||
"name": "right",
|
||||
"id": "942a66d9-d42f-43d6-8d70-ecb4ba5363bc",
|
||||
"path": "<Joystick>/stick/right",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "Joystick",
|
||||
"action": "Navigate",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": true
|
||||
},
|
||||
{
|
||||
"name": "Keyboard",
|
||||
"id": "ff527021-f211-4c02-933e-5976594c46ed",
|
||||
"path": "2DVector",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "",
|
||||
"action": "Navigate",
|
||||
"isComposite": true,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "up",
|
||||
"id": "563fbfdd-0f09-408d-aa75-8642c4f08ef0",
|
||||
"path": "<Keyboard>/w",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "Keyboard&Mouse",
|
||||
"action": "Navigate",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": true
|
||||
},
|
||||
{
|
||||
"name": "up",
|
||||
"id": "eb480147-c587-4a33-85ed-eb0ab9942c43",
|
||||
"path": "<Keyboard>/upArrow",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "Keyboard&Mouse",
|
||||
"action": "Navigate",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": true
|
||||
},
|
||||
{
|
||||
"name": "down",
|
||||
"id": "2bf42165-60bc-42ca-8072-8c13ab40239b",
|
||||
"path": "<Keyboard>/s",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "Keyboard&Mouse",
|
||||
"action": "Navigate",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": true
|
||||
},
|
||||
{
|
||||
"name": "down",
|
||||
"id": "85d264ad-e0a0-4565-b7ff-1a37edde51ac",
|
||||
"path": "<Keyboard>/downArrow",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "Keyboard&Mouse",
|
||||
"action": "Navigate",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": true
|
||||
},
|
||||
{
|
||||
"name": "left",
|
||||
"id": "74214943-c580-44e4-98eb-ad7eebe17902",
|
||||
"path": "<Keyboard>/a",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "Keyboard&Mouse",
|
||||
"action": "Navigate",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": true
|
||||
},
|
||||
{
|
||||
"name": "left",
|
||||
"id": "cea9b045-a000-445b-95b8-0c171af70a3b",
|
||||
"path": "<Keyboard>/leftArrow",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "Keyboard&Mouse",
|
||||
"action": "Navigate",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": true
|
||||
},
|
||||
{
|
||||
"name": "right",
|
||||
"id": "8607c725-d935-4808-84b1-8354e29bab63",
|
||||
"path": "<Keyboard>/d",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "Keyboard&Mouse",
|
||||
"action": "Navigate",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": true
|
||||
},
|
||||
{
|
||||
"name": "right",
|
||||
"id": "4cda81dc-9edd-4e03-9d7c-a71a14345d0b",
|
||||
"path": "<Keyboard>/rightArrow",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "Keyboard&Mouse",
|
||||
"action": "Navigate",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": true
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "9e92bb26-7e3b-4ec4-b06b-3c8f8e498ddc",
|
||||
"path": "*/{Submit}",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "Keyboard&Mouse;Gamepad;Touch;Joystick;XR",
|
||||
"action": "Submit",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "82627dcc-3b13-4ba9-841d-e4b746d6553e",
|
||||
"path": "*/{Cancel}",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "Keyboard&Mouse;Gamepad;Touch;Joystick;XR",
|
||||
"action": "Cancel",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "c52c8e0b-8179-41d3-b8a1-d149033bbe86",
|
||||
"path": "<Mouse>/position",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "Keyboard&Mouse",
|
||||
"action": "Point",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "e1394cbc-336e-44ce-9ea8-6007ed6193f7",
|
||||
"path": "<Pen>/position",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "Keyboard&Mouse",
|
||||
"action": "Point",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "5693e57a-238a-46ed-b5ae-e64e6e574302",
|
||||
"path": "<Touchscreen>/touch*/position",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "Touch",
|
||||
"action": "Point",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "4faf7dc9-b979-4210-aa8c-e808e1ef89f5",
|
||||
"path": "<Mouse>/leftButton",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": ";Keyboard&Mouse",
|
||||
"action": "Click",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "8d66d5ba-88d7-48e6-b1cd-198bbfef7ace",
|
||||
"path": "<Pen>/tip",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": ";Keyboard&Mouse",
|
||||
"action": "Click",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "47c2a644-3ebc-4dae-a106-589b7ca75b59",
|
||||
"path": "<Touchscreen>/touch*/press",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "Touch",
|
||||
"action": "Click",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "bb9e6b34-44bf-4381-ac63-5aa15d19f677",
|
||||
"path": "<XRController>/trigger",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "XR",
|
||||
"action": "Click",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "38c99815-14ea-4617-8627-164d27641299",
|
||||
"path": "<Mouse>/scroll",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": ";Keyboard&Mouse",
|
||||
"action": "ScrollWheel",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "24066f69-da47-44f3-a07e-0015fb02eb2e",
|
||||
"path": "<Mouse>/middleButton",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": ";Keyboard&Mouse",
|
||||
"action": "MiddleClick",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "4c191405-5738-4d4b-a523-c6a301dbf754",
|
||||
"path": "<Mouse>/rightButton",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": ";Keyboard&Mouse",
|
||||
"action": "RightClick",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "7236c0d9-6ca3-47cf-a6ee-a97f5b59ea77",
|
||||
"path": "<XRController>/devicePosition",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "XR",
|
||||
"action": "TrackedDevicePosition",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "23e01e3a-f935-4948-8d8b-9bcac77714fb",
|
||||
"path": "<XRController>/deviceRotation",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "XR",
|
||||
"action": "TrackedDeviceOrientation",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"controlSchemes": [
|
||||
{
|
||||
"name": "Keyboard&Mouse",
|
||||
"bindingGroup": "Keyboard&Mouse",
|
||||
"devices": [
|
||||
{
|
||||
"devicePath": "<Keyboard>",
|
||||
"isOptional": false,
|
||||
"isOR": false
|
||||
},
|
||||
{
|
||||
"devicePath": "<Mouse>",
|
||||
"isOptional": false,
|
||||
"isOR": false
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Gamepad",
|
||||
"bindingGroup": "Gamepad",
|
||||
"devices": [
|
||||
{
|
||||
"devicePath": "<Gamepad>",
|
||||
"isOptional": false,
|
||||
"isOR": false
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Touch",
|
||||
"bindingGroup": "Touch",
|
||||
"devices": [
|
||||
{
|
||||
"devicePath": "<Touchscreen>",
|
||||
"isOptional": false,
|
||||
"isOR": false
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Joystick",
|
||||
"bindingGroup": "Joystick",
|
||||
"devices": [
|
||||
{
|
||||
"devicePath": "<Joystick>",
|
||||
"isOptional": false,
|
||||
"isOR": false
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "XR",
|
||||
"bindingGroup": "XR",
|
||||
"devices": [
|
||||
{
|
||||
"devicePath": "<XRController>",
|
||||
"isOptional": false,
|
||||
"isOR": false
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b9a4e665ee9dc86418ddbd856532469d
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 11500000, guid: 8404be70184654265930450def6a9037, type: 3}
|
||||
generateWrapperCode: 1
|
||||
wrapperCodePath:
|
||||
wrapperClassName:
|
||||
wrapperCodeNamespace:
|
@ -143,7 +143,8 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
32rogues-palette_0: -4263702999252029208
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -2207,7 +2207,94 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
animals_0: -10524483601426386
|
||||
animals_1: 5758861361426822821
|
||||
animals_10: 6284572508141158567
|
||||
animals_11: -3482606926889630891
|
||||
animals_12: 110477935721402790
|
||||
animals_13: 3117204224443578919
|
||||
animals_14: -1601326401201788047
|
||||
animals_15: -1108939863998677119
|
||||
animals_16: -8111778111241485788
|
||||
animals_17: 446962508067046564
|
||||
animals_18: -2295827043839239567
|
||||
animals_19: 5305343351223448175
|
||||
animals_2: -1319315252296537693
|
||||
animals_20: 1824422802616795261
|
||||
animals_21: -5572966852987524704
|
||||
animals_22: 1630076222422912583
|
||||
animals_23: -1139288248276971085
|
||||
animals_24: 4070187574600864207
|
||||
animals_25: 9018698144469868806
|
||||
animals_26: -8724258294403020746
|
||||
animals_27: 582321688951060525
|
||||
animals_28: -4483673515960591821
|
||||
animals_29: 5097282243883862396
|
||||
animals_3: 8133266208652056809
|
||||
animals_30: 5419710681987447712
|
||||
animals_31: -4161338831235609555
|
||||
animals_32: 4048641224317721414
|
||||
animals_33: 1124165219147761991
|
||||
animals_34: -572356246499693142
|
||||
animals_35: -6970582189356206116
|
||||
animals_36: 9138745492465509665
|
||||
animals_37: -1509783578812421765
|
||||
animals_38: 8125364424167849222
|
||||
animals_39: 7265642452158645847
|
||||
animals_4: 8297040362687464060
|
||||
animals_40: 3475886771465258918
|
||||
animals_41: 770411555024796650
|
||||
animals_42: 8946626690490269396
|
||||
animals_43: 1160667220138473950
|
||||
animals_44: 1153746596011466521
|
||||
animals_45: 4712927188068023055
|
||||
animals_46: -4967493193431122229
|
||||
animals_47: 5811538498805445843
|
||||
animals_48: 2746119621797677130
|
||||
animals_49: -2293981572618866825
|
||||
animals_5: 3277387584969892780
|
||||
animals_50: -6473562026622309005
|
||||
animals_51: 2362535914230022783
|
||||
animals_52: -3231595727716635514
|
||||
animals_53: -5169472387167178914
|
||||
animals_54: -876630135174291157
|
||||
animals_55: -1624554001293739800
|
||||
animals_56: 5248482454610010518
|
||||
animals_57: -2700112277087773289
|
||||
animals_58: 9117898857819142678
|
||||
animals_59: 5902690423332886254
|
||||
animals_6: 6591381469864738340
|
||||
animals_60: 6239126494176331474
|
||||
animals_61: -4404376971585791885
|
||||
animals_62: 1718608150591464063
|
||||
animals_63: -7072027123935403585
|
||||
animals_64: 1890276288699866903
|
||||
animals_65: -3267045718005067572
|
||||
animals_66: 6412460303741115866
|
||||
animals_67: -9214495679950405414
|
||||
animals_68: -5311478213681595076
|
||||
animals_69: -6525345332382014969
|
||||
animals_7: 7913660522167358954
|
||||
animals_70: -5731849273972931832
|
||||
animals_71: 2249272328668063657
|
||||
animals_72: 5658685770109015843
|
||||
animals_73: 170665026887793354
|
||||
animals_74: 7093749859537999452
|
||||
animals_75: 5683965208251971143
|
||||
animals_76: -5379818922295397053
|
||||
animals_77: 3559144722160602830
|
||||
animals_78: -1921558801039466626
|
||||
animals_79: -2728679950148867946
|
||||
animals_8: -953346549932427826
|
||||
animals_80: 4610912741172404392
|
||||
animals_81: -5425450588715875996
|
||||
animals_82: 4650289726167825316
|
||||
animals_83: -3050109010250695404
|
||||
animals_84: 8919878443507687539
|
||||
animals_85: -6875286630872932556
|
||||
animals_86: 4977976925158220541
|
||||
animals_9: 3691526897687444597
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -1055,7 +1055,46 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
animated-tiles_0: 1248904367041259338
|
||||
animated-tiles_1: 7467183010074082891
|
||||
animated-tiles_10: -1306822321138035705
|
||||
animated-tiles_11: 4463407188052180364
|
||||
animated-tiles_12: 5722573295963358721
|
||||
animated-tiles_13: -5224086435462206578
|
||||
animated-tiles_14: 2489091328459762753
|
||||
animated-tiles_15: 6963941616572742015
|
||||
animated-tiles_16: 4838559821932360899
|
||||
animated-tiles_17: 8522913149641415315
|
||||
animated-tiles_18: -3535949300033588332
|
||||
animated-tiles_19: -3736852490660826426
|
||||
animated-tiles_2: 999578812777947858
|
||||
animated-tiles_20: 982417568549858740
|
||||
animated-tiles_21: -239383153323639986
|
||||
animated-tiles_22: 4386083574608722760
|
||||
animated-tiles_23: 4279189300715010344
|
||||
animated-tiles_24: -4531291334675362144
|
||||
animated-tiles_25: -2795883876502463270
|
||||
animated-tiles_26: 762155173038662451
|
||||
animated-tiles_27: -7550107150770447006
|
||||
animated-tiles_28: -7770366489558580432
|
||||
animated-tiles_29: -1423798057662055056
|
||||
animated-tiles_3: 4405943478799695401
|
||||
animated-tiles_30: -4050748648963886417
|
||||
animated-tiles_31: -292997882617790873
|
||||
animated-tiles_32: -8324529699630571127
|
||||
animated-tiles_33: 6348640238366761036
|
||||
animated-tiles_34: 7681981265236725465
|
||||
animated-tiles_35: 3896112132483513566
|
||||
animated-tiles_36: -8756296765216041865
|
||||
animated-tiles_37: 1762411287851888977
|
||||
animated-tiles_38: 7370318629355994056
|
||||
animated-tiles_4: 8855636840920763836
|
||||
animated-tiles_5: -1355188110398124474
|
||||
animated-tiles_6: -5519983311655423818
|
||||
animated-tiles_7: 1279378368186839760
|
||||
animated-tiles_8: 608655420098007906
|
||||
animated-tiles_9: 1073705134348853544
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -335,7 +335,16 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
autotiles_0: -2273950752401183013
|
||||
autotiles_1: 8311797939657411508
|
||||
autotiles_2: -123940760799379938
|
||||
autotiles_3: 815450953342384873
|
||||
autotiles_4: 3920207493824851942
|
||||
autotiles_5: 2947347108825714992
|
||||
autotiles_6: 6262479878745445203
|
||||
autotiles_7: 8152738321068744158
|
||||
autotiles_8: 6132950779384196328
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -5927,7 +5927,249 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
items-palette-swaps_0: -6619492975346507483
|
||||
items-palette-swaps_1: 4589782827064144943
|
||||
items-palette-swaps_10: 3548291033100364820
|
||||
items-palette-swaps_100: -3191222728883760334
|
||||
items-palette-swaps_101: -7946067496352816016
|
||||
items-palette-swaps_102: 9209736806223252134
|
||||
items-palette-swaps_103: 5036718938786368064
|
||||
items-palette-swaps_104: 1141068241364190522
|
||||
items-palette-swaps_105: 7126399115732109693
|
||||
items-palette-swaps_106: -3561910905690844355
|
||||
items-palette-swaps_107: -4242783284715043088
|
||||
items-palette-swaps_108: -5094255101240358354
|
||||
items-palette-swaps_109: 2849008341589625770
|
||||
items-palette-swaps_11: -7169039478628206181
|
||||
items-palette-swaps_110: 6216958617558658991
|
||||
items-palette-swaps_111: -3373558063856728444
|
||||
items-palette-swaps_112: -3252990413137030151
|
||||
items-palette-swaps_113: -8884595674556269229
|
||||
items-palette-swaps_114: 5902925374099774717
|
||||
items-palette-swaps_115: -3791071124525280553
|
||||
items-palette-swaps_116: -5009057905661600985
|
||||
items-palette-swaps_117: 4183901023211664571
|
||||
items-palette-swaps_118: -5246956107759054158
|
||||
items-palette-swaps_119: -4516498132819508538
|
||||
items-palette-swaps_12: 7291937185072696058
|
||||
items-palette-swaps_120: -960007847593198740
|
||||
items-palette-swaps_121: -5580206773480919947
|
||||
items-palette-swaps_122: -4397471217886965407
|
||||
items-palette-swaps_123: 7908539004356547415
|
||||
items-palette-swaps_124: 1328453853587735746
|
||||
items-palette-swaps_125: 885561194507435417
|
||||
items-palette-swaps_126: 4389691451942416949
|
||||
items-palette-swaps_127: -5242321604222544691
|
||||
items-palette-swaps_128: 55452119106390987
|
||||
items-palette-swaps_129: 224576588342382968
|
||||
items-palette-swaps_13: -5147858647169533431
|
||||
items-palette-swaps_130: -7536267594287011857
|
||||
items-palette-swaps_131: 109083441183590183
|
||||
items-palette-swaps_132: -3092074244877129484
|
||||
items-palette-swaps_133: -8089195008137046685
|
||||
items-palette-swaps_134: 948861059636596378
|
||||
items-palette-swaps_135: 5739136226354794948
|
||||
items-palette-swaps_136: -107141294785787219
|
||||
items-palette-swaps_137: 4173940683447454865
|
||||
items-palette-swaps_138: 5992891492758602983
|
||||
items-palette-swaps_139: 8714403401302157350
|
||||
items-palette-swaps_14: 6084873215087267911
|
||||
items-palette-swaps_140: 8183418850096749965
|
||||
items-palette-swaps_141: 3837693857822741174
|
||||
items-palette-swaps_142: -1175792964358176985
|
||||
items-palette-swaps_143: -3222008957809811986
|
||||
items-palette-swaps_144: 7285505835653693383
|
||||
items-palette-swaps_145: -5610509163769698834
|
||||
items-palette-swaps_146: -4894604169718846714
|
||||
items-palette-swaps_147: -2383254682297812932
|
||||
items-palette-swaps_148: 3305995596223668845
|
||||
items-palette-swaps_149: -3580700510185278654
|
||||
items-palette-swaps_15: 3472584344387269898
|
||||
items-palette-swaps_150: -4742101519600711820
|
||||
items-palette-swaps_151: 4222217807947926909
|
||||
items-palette-swaps_152: -2040222555902720625
|
||||
items-palette-swaps_153: 1586801963019315858
|
||||
items-palette-swaps_154: -8993518505572293661
|
||||
items-palette-swaps_155: 1084390530435309501
|
||||
items-palette-swaps_156: -1021539070181376810
|
||||
items-palette-swaps_157: -1808744356051834684
|
||||
items-palette-swaps_158: 1701917572236602649
|
||||
items-palette-swaps_159: -2363632156688686671
|
||||
items-palette-swaps_16: 4215746713251922701
|
||||
items-palette-swaps_160: 5605770584497480591
|
||||
items-palette-swaps_161: 2438654888404923656
|
||||
items-palette-swaps_162: 8758344548869265884
|
||||
items-palette-swaps_163: -836829770540092715
|
||||
items-palette-swaps_164: -3796642995996177374
|
||||
items-palette-swaps_165: 4294343668201480310
|
||||
items-palette-swaps_166: 8094088062166267063
|
||||
items-palette-swaps_167: -3464729849635762467
|
||||
items-palette-swaps_168: -6303535278566793568
|
||||
items-palette-swaps_169: 4698766726580753061
|
||||
items-palette-swaps_17: -2875079901741055896
|
||||
items-palette-swaps_170: 5517055424903109376
|
||||
items-palette-swaps_171: -2942042647872754029
|
||||
items-palette-swaps_172: 1953801908155834452
|
||||
items-palette-swaps_173: 3550135355357698122
|
||||
items-palette-swaps_174: -2652932640190117961
|
||||
items-palette-swaps_175: 1916103279089594446
|
||||
items-palette-swaps_176: 8103114167050472572
|
||||
items-palette-swaps_177: 4053564941686228853
|
||||
items-palette-swaps_178: 1712525369845447863
|
||||
items-palette-swaps_179: 8859809051641841110
|
||||
items-palette-swaps_18: 695724953796405198
|
||||
items-palette-swaps_180: -8407088903485722905
|
||||
items-palette-swaps_181: 686942726980144117
|
||||
items-palette-swaps_182: 931994668720113048
|
||||
items-palette-swaps_183: 4853247901772421871
|
||||
items-palette-swaps_184: -6515558313217601762
|
||||
items-palette-swaps_185: 7487477616773180231
|
||||
items-palette-swaps_186: 1906539149752960527
|
||||
items-palette-swaps_187: -3148753438240749785
|
||||
items-palette-swaps_188: 2200577781178245516
|
||||
items-palette-swaps_189: 7043550820396485771
|
||||
items-palette-swaps_19: 5674218189923726843
|
||||
items-palette-swaps_190: 1235819419412379808
|
||||
items-palette-swaps_191: -7393212881485998445
|
||||
items-palette-swaps_192: 1397451940432406190
|
||||
items-palette-swaps_193: -1286604664770946010
|
||||
items-palette-swaps_194: -6571298498272990773
|
||||
items-palette-swaps_195: -4980762873093350488
|
||||
items-palette-swaps_196: 8049232704640031131
|
||||
items-palette-swaps_197: 4724099807471653840
|
||||
items-palette-swaps_198: 5805394722346256850
|
||||
items-palette-swaps_199: -6979317250587563602
|
||||
items-palette-swaps_2: 4961432055381542510
|
||||
items-palette-swaps_20: -5614356071177094298
|
||||
items-palette-swaps_200: -3249380567520569279
|
||||
items-palette-swaps_201: -7273827109423473367
|
||||
items-palette-swaps_202: 349661197913089649
|
||||
items-palette-swaps_203: 3552840973538712424
|
||||
items-palette-swaps_204: -6526987257236418557
|
||||
items-palette-swaps_205: 6539021427390144561
|
||||
items-palette-swaps_206: -6111808776909257832
|
||||
items-palette-swaps_207: -3518128922693715405
|
||||
items-palette-swaps_208: -1233175594738790766
|
||||
items-palette-swaps_209: -232633032878675671
|
||||
items-palette-swaps_21: -6503655994496131178
|
||||
items-palette-swaps_210: 3882303559860851607
|
||||
items-palette-swaps_211: 8799830180070931764
|
||||
items-palette-swaps_212: -2813125561548474923
|
||||
items-palette-swaps_213: -409340101003363150
|
||||
items-palette-swaps_214: -4337044197665411123
|
||||
items-palette-swaps_215: 5821451940924418312
|
||||
items-palette-swaps_216: -4981443108488852763
|
||||
items-palette-swaps_217: -6924185984674439899
|
||||
items-palette-swaps_218: 1171062231592090159
|
||||
items-palette-swaps_219: -2287268533152699347
|
||||
items-palette-swaps_22: 9060336389890050241
|
||||
items-palette-swaps_220: -6899627763240824289
|
||||
items-palette-swaps_221: 2103306358878784974
|
||||
items-palette-swaps_222: 3370354693322136796
|
||||
items-palette-swaps_223: -5093489349422110545
|
||||
items-palette-swaps_224: -116301554113208238
|
||||
items-palette-swaps_225: -7103753514480521270
|
||||
items-palette-swaps_226: 2657759554892523142
|
||||
items-palette-swaps_227: -5306087131015729163
|
||||
items-palette-swaps_228: 1217963962535841686
|
||||
items-palette-swaps_229: 1652720814458223868
|
||||
items-palette-swaps_23: -445002188124651845
|
||||
items-palette-swaps_230: 2368385419596741748
|
||||
items-palette-swaps_231: -4425586380453069144
|
||||
items-palette-swaps_232: -3696684622230610734
|
||||
items-palette-swaps_233: 7864352686610674170
|
||||
items-palette-swaps_234: -1106780263934677948
|
||||
items-palette-swaps_235: 3938818142037745337
|
||||
items-palette-swaps_236: -5303463568620795852
|
||||
items-palette-swaps_237: -5131483773891961053
|
||||
items-palette-swaps_238: 1119224824869705357
|
||||
items-palette-swaps_239: 5193290613849550000
|
||||
items-palette-swaps_24: -7129021121070087271
|
||||
items-palette-swaps_240: -8115465579745649556
|
||||
items-palette-swaps_241: -8842132088900121125
|
||||
items-palette-swaps_25: -239231322826098568
|
||||
items-palette-swaps_26: 2152374782320564188
|
||||
items-palette-swaps_27: 6488347691703966746
|
||||
items-palette-swaps_28: 6076788194550288686
|
||||
items-palette-swaps_29: 161288270044260672
|
||||
items-palette-swaps_3: -6174807198039117465
|
||||
items-palette-swaps_30: -5882278053562531435
|
||||
items-palette-swaps_31: 8572342507773182762
|
||||
items-palette-swaps_32: 5915226265634852804
|
||||
items-palette-swaps_33: 3021797665742896213
|
||||
items-palette-swaps_34: 1739293174407058829
|
||||
items-palette-swaps_35: 748153985989387529
|
||||
items-palette-swaps_36: 5200577543687903905
|
||||
items-palette-swaps_37: -4080028698793969395
|
||||
items-palette-swaps_38: 6010620945086474573
|
||||
items-palette-swaps_39: -4627932359080518752
|
||||
items-palette-swaps_4: 1781496483063136199
|
||||
items-palette-swaps_40: -4230647062804320317
|
||||
items-palette-swaps_41: 3952972201102789593
|
||||
items-palette-swaps_42: -8834521990664797902
|
||||
items-palette-swaps_43: 6841788116208618121
|
||||
items-palette-swaps_44: 6143546952935730602
|
||||
items-palette-swaps_45: 7048357224507505556
|
||||
items-palette-swaps_46: 4671267539586881838
|
||||
items-palette-swaps_47: 7238194708435311187
|
||||
items-palette-swaps_48: 2754711423621825340
|
||||
items-palette-swaps_49: -9049250962447482003
|
||||
items-palette-swaps_5: -4898731100839214754
|
||||
items-palette-swaps_50: -2285500946592092654
|
||||
items-palette-swaps_51: 9040497962253384006
|
||||
items-palette-swaps_52: 5141625708459017569
|
||||
items-palette-swaps_53: 7653499115565127531
|
||||
items-palette-swaps_54: -2086018435001929957
|
||||
items-palette-swaps_55: 610822724964319013
|
||||
items-palette-swaps_56: -7846597073023466776
|
||||
items-palette-swaps_57: -3162510955621289927
|
||||
items-palette-swaps_58: -7183456631863971702
|
||||
items-palette-swaps_59: 4374191720937365488
|
||||
items-palette-swaps_6: 3308814971107793122
|
||||
items-palette-swaps_60: 4099139725009474193
|
||||
items-palette-swaps_61: 5989780236340807517
|
||||
items-palette-swaps_62: -6302335994355511115
|
||||
items-palette-swaps_63: 3049323893190711042
|
||||
items-palette-swaps_64: 2389913755906884618
|
||||
items-palette-swaps_65: -2140671492327173230
|
||||
items-palette-swaps_66: 8021869959321590327
|
||||
items-palette-swaps_67: -1083827298830333342
|
||||
items-palette-swaps_68: -6364270664748121809
|
||||
items-palette-swaps_69: 6843827043199650790
|
||||
items-palette-swaps_7: 9127802570214651946
|
||||
items-palette-swaps_70: 3185681122992185339
|
||||
items-palette-swaps_71: 2711988157169101620
|
||||
items-palette-swaps_72: -6969400839075561952
|
||||
items-palette-swaps_73: 1124884174095875160
|
||||
items-palette-swaps_74: -4489096515426704106
|
||||
items-palette-swaps_75: -8363365982899308278
|
||||
items-palette-swaps_76: 7545933341268681037
|
||||
items-palette-swaps_77: 8786730668018406590
|
||||
items-palette-swaps_78: -7567118263729082660
|
||||
items-palette-swaps_79: 2902372231040547337
|
||||
items-palette-swaps_8: -13212106489457605
|
||||
items-palette-swaps_80: -4124911346630176579
|
||||
items-palette-swaps_81: 7626356990314216235
|
||||
items-palette-swaps_82: -7013142970869298803
|
||||
items-palette-swaps_83: 439797006980761599
|
||||
items-palette-swaps_84: 2282908662421871081
|
||||
items-palette-swaps_85: -1200535349530775882
|
||||
items-palette-swaps_86: 2754030318999396734
|
||||
items-palette-swaps_87: -7040276323189873639
|
||||
items-palette-swaps_88: 253348713402710392
|
||||
items-palette-swaps_89: 8229369811922235444
|
||||
items-palette-swaps_9: -1056744183370996466
|
||||
items-palette-swaps_90: 8700542670866908660
|
||||
items-palette-swaps_91: -8871326271524333042
|
||||
items-palette-swaps_92: -1357599381046454576
|
||||
items-palette-swaps_93: 6218723501743635480
|
||||
items-palette-swaps_94: 5063815278619223841
|
||||
items-palette-swaps_95: -1280727000497776707
|
||||
items-palette-swaps_96: -8590719237408275338
|
||||
items-palette-swaps_97: 8364398166844522345
|
||||
items-palette-swaps_98: -664305984929896798
|
||||
items-palette-swaps_99: -2265468717582720476
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -3983,7 +3983,168 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
items_0: 6761164967045977113
|
||||
items_1: 5508725064705088119
|
||||
items_10: 8132948862792318974
|
||||
items_100: 8344717679193547042
|
||||
items_101: 1651301721702839308
|
||||
items_102: 5755098471613179246
|
||||
items_103: -3718929783938772351
|
||||
items_104: 9184157982723834790
|
||||
items_105: -1754823780530430466
|
||||
items_106: 6203400943613683936
|
||||
items_107: 7852314945348522046
|
||||
items_108: -7905648789407400134
|
||||
items_109: -5703758344047898144
|
||||
items_11: 2614870373251885436
|
||||
items_110: -7323674943459820596
|
||||
items_111: -8650232248937032532
|
||||
items_112: 4775838593620856055
|
||||
items_113: -2660569609710428876
|
||||
items_114: -8574266010513421610
|
||||
items_115: 233620996897989955
|
||||
items_116: 2936779923054452310
|
||||
items_117: -3753784414763703992
|
||||
items_118: -2703565723401933593
|
||||
items_119: 117214147892069551
|
||||
items_12: -2693009140137883590
|
||||
items_120: -4790045407390419966
|
||||
items_121: -6064055205779420750
|
||||
items_122: 3386722485073375770
|
||||
items_123: 6068373614614089934
|
||||
items_124: -649829298453278362
|
||||
items_125: -1929863458776020100
|
||||
items_126: -914228068540843439
|
||||
items_127: -6988130921096395802
|
||||
items_128: -5539077537493426
|
||||
items_129: -4550341189887911203
|
||||
items_13: -956252262595852801
|
||||
items_130: -3930946897451993484
|
||||
items_131: 5846979971430347887
|
||||
items_132: 1359165526104252653
|
||||
items_133: 9148803566423877661
|
||||
items_134: 1533569245288039128
|
||||
items_135: -2108055075359774045
|
||||
items_136: -3978551154961114089
|
||||
items_137: 6720243606718852342
|
||||
items_138: 1039740323736012158
|
||||
items_139: 8086557183682922639
|
||||
items_14: 6738218706411903907
|
||||
items_140: -8726926368370625433
|
||||
items_141: -1067920246338498130
|
||||
items_142: -1712464291680838311
|
||||
items_143: 5337744933849262730
|
||||
items_144: 9074706117657797723
|
||||
items_145: 5820086750453969133
|
||||
items_146: -2834859317503590577
|
||||
items_147: -4939730339798417211
|
||||
items_148: 5269696323455554877
|
||||
items_149: 8286571802576935001
|
||||
items_15: -6338023803479276477
|
||||
items_150: -5626462023738469512
|
||||
items_151: -8089074258220290989
|
||||
items_152: 7903874054988691285
|
||||
items_153: -303773854570714582
|
||||
items_154: 497271462812818090
|
||||
items_155: 2992740897147028129
|
||||
items_156: 7449126770283777516
|
||||
items_157: 4033428354454998030
|
||||
items_158: -3083499485765743726
|
||||
items_159: 3226743548265507589
|
||||
items_16: 6395214293025444372
|
||||
items_160: -8275251718437484499
|
||||
items_17: -4538752222985096420
|
||||
items_18: 4533227004153260592
|
||||
items_19: 1122774824596591943
|
||||
items_2: -68751727340038015
|
||||
items_20: 7911235102323647998
|
||||
items_21: -4058434812019303673
|
||||
items_22: 8436657204533251546
|
||||
items_23: 6191716412420617325
|
||||
items_24: 6355480216337973169
|
||||
items_25: -9098891631924085042
|
||||
items_26: 1784186740104572286
|
||||
items_27: 8391431092616798930
|
||||
items_28: 6077338267653451029
|
||||
items_29: -7121528990389113491
|
||||
items_3: 6099581493293703690
|
||||
items_30: 7306274148607722714
|
||||
items_31: -7162647019817104946
|
||||
items_32: -8561806557982860685
|
||||
items_33: 9216205297631055959
|
||||
items_34: 2586642229955333766
|
||||
items_35: -6102374392529501751
|
||||
items_36: -4278747916818796210
|
||||
items_37: 9130684549513820550
|
||||
items_38: 5947598201806246533
|
||||
items_39: 124106431076995637
|
||||
items_4: -5428206428529569624
|
||||
items_40: 6908069387385937300
|
||||
items_41: 3864835576925441180
|
||||
items_42: 3158488010477605343
|
||||
items_43: -2291968272303781032
|
||||
items_44: 6314550479633173585
|
||||
items_45: -851246318378289833
|
||||
items_46: -2892722968376938932
|
||||
items_47: -4502050031476377117
|
||||
items_48: 8862701587616323045
|
||||
items_49: 5492500456884366514
|
||||
items_5: -7833671090200325546
|
||||
items_50: -2580360775680210046
|
||||
items_51: 2316303970329030911
|
||||
items_52: -8029774753496570066
|
||||
items_53: 6234064350648681191
|
||||
items_54: -1083111729585998019
|
||||
items_55: 7605754988663979374
|
||||
items_56: 6958571527567373106
|
||||
items_57: 7072109450132228763
|
||||
items_58: 8069547862873273568
|
||||
items_59: -8297164604188563192
|
||||
items_6: 5860025163644826426
|
||||
items_60: 656702045158751335
|
||||
items_61: 8386005727647381285
|
||||
items_62: 7419183496887217242
|
||||
items_63: -7922772116564282560
|
||||
items_64: -5344007660830287148
|
||||
items_65: -1742012962666287389
|
||||
items_66: -6556086720143981034
|
||||
items_67: 6214652250989123760
|
||||
items_68: 5044350967181698012
|
||||
items_69: -1906296669749205340
|
||||
items_7: -7583409310137716746
|
||||
items_70: -7655823996655903715
|
||||
items_71: 7116206395379427616
|
||||
items_72: 2140243605101427217
|
||||
items_73: -6229739577819397656
|
||||
items_74: -4063295180217184869
|
||||
items_75: 3447626333678633045
|
||||
items_76: -7651958066320933242
|
||||
items_77: 4078589816385665303
|
||||
items_78: -5939302461621596088
|
||||
items_79: 206911327383899660
|
||||
items_8: 980155311395259703
|
||||
items_80: 552989659857323890
|
||||
items_81: 4292883687895924744
|
||||
items_82: -1704500264438275045
|
||||
items_83: -8295029410813222302
|
||||
items_84: -4016013334462737405
|
||||
items_85: -7479063964076681684
|
||||
items_86: -5996106085844551684
|
||||
items_87: 8450120992082419419
|
||||
items_88: -5362799649635832982
|
||||
items_89: -220729229975464070
|
||||
items_9: -732356172534689064
|
||||
items_90: -3450007023295956540
|
||||
items_91: 171138705577659461
|
||||
items_92: -6620927211670007745
|
||||
items_93: 5484207526445910981
|
||||
items_94: -8124165405611791505
|
||||
items_95: 7062176475876359583
|
||||
items_96: -3514555725737318775
|
||||
items_97: 1089564401988209714
|
||||
items_98: -975732921841048486
|
||||
items_99: -8864223617709786134
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -1727,7 +1727,74 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
monsters_0: 3891796401534313901
|
||||
monsters_1: 5751508951580130967
|
||||
monsters_10: -6546070771089995561
|
||||
monsters_11: 1904355317838143106
|
||||
monsters_12: 2464811035559190332
|
||||
monsters_13: 8844051248698050782
|
||||
monsters_14: -7439663157641025031
|
||||
monsters_15: 4856094035428964695
|
||||
monsters_16: -2946662619305601574
|
||||
monsters_17: 3671900364904746485
|
||||
monsters_18: -1988031052278033391
|
||||
monsters_19: -3247113975369345124
|
||||
monsters_2: 2520108084128459728
|
||||
monsters_20: -3962413640353424216
|
||||
monsters_21: 8179219320991236185
|
||||
monsters_22: 8377631560499595938
|
||||
monsters_23: 1181744358409791758
|
||||
monsters_24: 8296078124959133524
|
||||
monsters_25: 4166378789452598263
|
||||
monsters_26: -2189383202378275735
|
||||
monsters_27: -6225393693595128375
|
||||
monsters_28: -3426723405978703523
|
||||
monsters_29: -8074204374978827116
|
||||
monsters_3: -367161223939785014
|
||||
monsters_30: -5996608079194875224
|
||||
monsters_31: -4125082613292834868
|
||||
monsters_32: -4164513180864161970
|
||||
monsters_33: -1262749578004429523
|
||||
monsters_34: -3594981060331289200
|
||||
monsters_35: 6085725655543534406
|
||||
monsters_36: 1789610910260621774
|
||||
monsters_37: -3565398662424959636
|
||||
monsters_38: -5678693700280636900
|
||||
monsters_39: -2856217466817918920
|
||||
monsters_4: -2658868259114192933
|
||||
monsters_40: -5396700817622867847
|
||||
monsters_41: -3858735583668851331
|
||||
monsters_42: 7074111445833005528
|
||||
monsters_43: -7707900368317550463
|
||||
monsters_44: 6365740769361924816
|
||||
monsters_45: -3914883460261312214
|
||||
monsters_46: 802761708442527142
|
||||
monsters_47: 1674505638009884512
|
||||
monsters_48: -7663375236545269448
|
||||
monsters_49: 4006780188206396895
|
||||
monsters_5: -5099675088665252913
|
||||
monsters_50: -5734461341374417451
|
||||
monsters_51: 5995906777724591011
|
||||
monsters_52: 4731876343249655630
|
||||
monsters_53: 8210856910144652370
|
||||
monsters_54: -1889461836883286635
|
||||
monsters_55: -4939385794465563893
|
||||
monsters_56: 118213427929379182
|
||||
monsters_57: -5422780926002879241
|
||||
monsters_58: 5031393064261919595
|
||||
monsters_59: -2866137238181198657
|
||||
monsters_6: 9001568371343310336
|
||||
monsters_60: -1799733161817318030
|
||||
monsters_61: 4834892014007152935
|
||||
monsters_62: -4678270454940656224
|
||||
monsters_63: -4905392893228763649
|
||||
monsters_64: -3781908739844995804
|
||||
monsters_65: -7544018687242176462
|
||||
monsters_66: 3941523151757596017
|
||||
monsters_7: -2086191518149510023
|
||||
monsters_8: -3398425601533472082
|
||||
monsters_9: 3499036745522295064
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -1079,7 +1079,47 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
rogues_0: -1662613486703163539
|
||||
rogues_1: -5918137915363136097
|
||||
rogues_10: -6502872108531726933
|
||||
rogues_11: -6565835137778244483
|
||||
rogues_12: 6296023426331546674
|
||||
rogues_13: -8582895898453060978
|
||||
rogues_14: -5787033745658224487
|
||||
rogues_15: -779178000821955330
|
||||
rogues_16: 6318122654512930386
|
||||
rogues_17: -644773305562672891
|
||||
rogues_18: 3687545213055956518
|
||||
rogues_19: 2783893222895161197
|
||||
rogues_2: 7598845908082315433
|
||||
rogues_20: -1115302973846929897
|
||||
rogues_21: -2498498304402662931
|
||||
rogues_22: 9040946838189547898
|
||||
rogues_23: 3078493119409997294
|
||||
rogues_24: 8086551292566691165
|
||||
rogues_25: 4025885058500790527
|
||||
rogues_26: 3997349625540299793
|
||||
rogues_27: -5479864878087252051
|
||||
rogues_28: 256837912651675722
|
||||
rogues_29: 5608883997597516285
|
||||
rogues_3: 6847130768412236191
|
||||
rogues_30: -2094491032432744238
|
||||
rogues_31: -8930648807531028900
|
||||
rogues_32: 8622822618815760748
|
||||
rogues_33: 3860134714905431866
|
||||
rogues_34: -889892870527839143
|
||||
rogues_35: 5509031573903990705
|
||||
rogues_36: 5228109309645807972
|
||||
rogues_37: -994114111691974414
|
||||
rogues_38: -4966345734685538788
|
||||
rogues_39: -2363425250398905029
|
||||
rogues_4: 1024069151341385491
|
||||
rogues_5: 248234936431850608
|
||||
rogues_6: -4187769825804618121
|
||||
rogues_7: -1764452743288652820
|
||||
rogues_8: 3327685065352914550
|
||||
rogues_9: -3935264485411027069
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -3527,7 +3527,149 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
tiles_0: 1807125615787039003
|
||||
tiles_1: 349823833441268365
|
||||
tiles_10: 5560954434011818755
|
||||
tiles_100: 2664919574022166531
|
||||
tiles_101: 4894293944757072678
|
||||
tiles_102: -7537728127023367017
|
||||
tiles_103: 3841478949471339740
|
||||
tiles_104: -2331468818310051910
|
||||
tiles_105: -7829014173379714686
|
||||
tiles_106: -4398118056257393346
|
||||
tiles_107: -8784054672525020626
|
||||
tiles_108: -3778929495279536526
|
||||
tiles_109: 1842850403139085200
|
||||
tiles_11: 4239528737361974724
|
||||
tiles_110: 1512237473817002270
|
||||
tiles_111: 5639535537619044385
|
||||
tiles_112: -8553008988213887698
|
||||
tiles_113: 7420306766575028572
|
||||
tiles_114: -7847537291072819841
|
||||
tiles_115: 1350793827111531042
|
||||
tiles_116: -3061831378975216743
|
||||
tiles_117: -3693592864188940375
|
||||
tiles_118: 667617918077419189
|
||||
tiles_119: 7348706756570709089
|
||||
tiles_12: -4672163745296329812
|
||||
tiles_120: 2699241387616122753
|
||||
tiles_121: 6636026030207045053
|
||||
tiles_122: -1146004401591003187
|
||||
tiles_123: 6836191339627448921
|
||||
tiles_124: -1396394433024457344
|
||||
tiles_125: 3362829996786808830
|
||||
tiles_126: -7654079778348290507
|
||||
tiles_127: 8984585068276349725
|
||||
tiles_128: -6166603320939981754
|
||||
tiles_129: -335546819104697968
|
||||
tiles_13: -8305803365058092108
|
||||
tiles_130: 4639667851638375257
|
||||
tiles_131: 5027566769659864733
|
||||
tiles_132: 9216660323122252470
|
||||
tiles_133: -2348927809873174427
|
||||
tiles_134: 1823359141856673694
|
||||
tiles_135: 507991609458048091
|
||||
tiles_136: -3241807953627189516
|
||||
tiles_137: 2374555461510720412
|
||||
tiles_138: 3433671182191017847
|
||||
tiles_139: -873322832810516204
|
||||
tiles_14: 5541110501864291823
|
||||
tiles_140: -1086328592429712742
|
||||
tiles_141: 8858308364851201084
|
||||
tiles_15: -5012251703786577423
|
||||
tiles_16: 2252217939642970804
|
||||
tiles_17: 3048892388686381023
|
||||
tiles_18: -2734800647392024937
|
||||
tiles_19: 3786829970477001853
|
||||
tiles_2: -6614373457484812694
|
||||
tiles_20: -2943289621063786373
|
||||
tiles_21: 2870286397712609369
|
||||
tiles_22: -6925154376186504650
|
||||
tiles_23: 922424046108175333
|
||||
tiles_24: -4016574229998233168
|
||||
tiles_25: -6292215929027113611
|
||||
tiles_26: 3017993688136988190
|
||||
tiles_27: 6363912815652929497
|
||||
tiles_28: 7397035649948849851
|
||||
tiles_29: 61205593611490087
|
||||
tiles_3: 1639214462598301798
|
||||
tiles_30: -7052531943125621977
|
||||
tiles_31: -6848179138509233854
|
||||
tiles_32: -8473965523027447877
|
||||
tiles_33: 4410115334632175332
|
||||
tiles_34: 8189123915696156741
|
||||
tiles_35: 49598692365941603
|
||||
tiles_36: 57701541896607731
|
||||
tiles_37: -4590312153206918926
|
||||
tiles_38: 6568244172134801747
|
||||
tiles_39: 8813815085496886684
|
||||
tiles_4: 2157240733274199957
|
||||
tiles_40: -6835276744072785760
|
||||
tiles_41: 8402464592913180643
|
||||
tiles_42: -3254853038742249471
|
||||
tiles_43: -6323610611032215402
|
||||
tiles_44: -4721301054069617602
|
||||
tiles_45: 2147015527136506264
|
||||
tiles_46: 1403650607418574919
|
||||
tiles_47: 4650436327494542774
|
||||
tiles_48: 8486608725039104117
|
||||
tiles_49: -3246416448344134604
|
||||
tiles_5: 4798128000316562087
|
||||
tiles_50: 5580018608728203199
|
||||
tiles_51: 7863668928567222943
|
||||
tiles_52: -5366053918321049083
|
||||
tiles_53: 3558875731377502902
|
||||
tiles_54: 8054581177940739175
|
||||
tiles_55: -1813513695252028928
|
||||
tiles_56: 110691633508016265
|
||||
tiles_57: -5173318670258628170
|
||||
tiles_58: -4008939216211291016
|
||||
tiles_59: 8867357604404364081
|
||||
tiles_6: -7995846982363831464
|
||||
tiles_60: -4352730477567032214
|
||||
tiles_61: 3818660318709977233
|
||||
tiles_62: -6765549610841505982
|
||||
tiles_63: 4998937224500876124
|
||||
tiles_64: -1199936339933312810
|
||||
tiles_65: 4547986755193944361
|
||||
tiles_66: 3979137799469880484
|
||||
tiles_67: -2637850224642488606
|
||||
tiles_68: 9086956906396718886
|
||||
tiles_69: -5561700006409731014
|
||||
tiles_7: -4202638810691693305
|
||||
tiles_70: -5436753550215835016
|
||||
tiles_71: -8266999026625987546
|
||||
tiles_72: 3851873593501409858
|
||||
tiles_73: 324894394072747164
|
||||
tiles_74: -1777576658924061826
|
||||
tiles_75: -9067255232676971120
|
||||
tiles_76: -1463421641390325146
|
||||
tiles_77: 8787490208024810661
|
||||
tiles_78: -1810023967320238405
|
||||
tiles_79: -4037176215284919437
|
||||
tiles_8: -7708644975649761358
|
||||
tiles_80: -6023555733352806269
|
||||
tiles_81: -4954369765903962290
|
||||
tiles_82: 9186100028781630357
|
||||
tiles_83: -8894122241839933156
|
||||
tiles_84: -769894619084422448
|
||||
tiles_85: 5456959532574919170
|
||||
tiles_86: -3109950417928512648
|
||||
tiles_87: 1739492175354726415
|
||||
tiles_88: 3132585409767327958
|
||||
tiles_89: 5076840621122836206
|
||||
tiles_9: -1530080802165054831
|
||||
tiles_90: 8736261515240804949
|
||||
tiles_91: -5861420241031547173
|
||||
tiles_92: 7862125198794850187
|
||||
tiles_93: 4928719070988601791
|
||||
tiles_94: -3239889426108392424
|
||||
tiles_95: 5532331755474975849
|
||||
tiles_96: -7986134054606587919
|
||||
tiles_97: -1656563747235035063
|
||||
tiles_98: -6959196687471451608
|
||||
tiles_99: -8672295044416735018
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -143,7 +143,8 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
BlindedGrimlock_0: 6073426624527988715
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -215,7 +215,11 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
BlindedGrimlock_0: 6073426624527988715
|
||||
BlindedGrimlock_1: -39615258269727200
|
||||
BlindedGrimlock_2: 295492324102993455
|
||||
BlindedGrimlock_3: 6131899579568874665
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -143,7 +143,8 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
BloodshotEye_0: 1672026421935884308
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -215,7 +215,11 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
BloodshotEye_0: 1672026421935884308
|
||||
BloodshotEye_1: -2778210942038379355
|
||||
BloodshotEye_2: 353173199271631165
|
||||
BloodshotEye_3: 535148015317202201
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -143,7 +143,8 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
BrawnyOgre_0: 2144151034724904710
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -215,7 +215,11 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
BrawnyOgre_0: 2144151034724904710
|
||||
BrawnyOgre_1: 595555567984841546
|
||||
BrawnyOgre_2: -6267479771419316695
|
||||
BrawnyOgre_3: -860201698049871586
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -143,7 +143,8 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
CrimsonSlaad_0: 2427215090208079089
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -215,7 +215,11 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
CrimsonSlaad_0: 2427215090208079089
|
||||
CrimsonSlaad_1: 1164431766812223211
|
||||
CrimsonSlaad_2: 3785220325845271401
|
||||
CrimsonSlaad_3: 3798183772401922839
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -143,7 +143,8 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
CrushingCyclops_0: -721324719392653727
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -215,7 +215,11 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
CrushingCyclops_0: -721324719392653727
|
||||
CrushingCyclops_1: -913691719737636634
|
||||
CrushingCyclops_2: 3665950025816996241
|
||||
CrushingCyclops_3: 7899537486643840411
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -143,7 +143,8 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
DeathSlime_0: 2299928196995773351
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -215,7 +215,11 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
DeathSlime_0: 2299928196995773351
|
||||
DeathSlime_1: 7187632925653240700
|
||||
DeathSlime_2: -90702126400323083
|
||||
DeathSlime_3: -1287628048685721915
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -143,7 +143,8 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
FungalMyconid_0: 510683012303594349
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -215,7 +215,11 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
FungalMyconid_0: 510683012303594349
|
||||
FungalMyconid_1: -8609592097911626303
|
||||
FungalMyconid_2: 609693872740988799
|
||||
FungalMyconid_3: -4085752315564358240
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -143,7 +143,8 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
HumongousEttin_0: 7024762585298239526
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -215,7 +215,11 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
HumongousEttin_0: 7024762585298239526
|
||||
HumongousEttin_1: -4824036435325463152
|
||||
HumongousEttin_2: 1163183436106966176
|
||||
HumongousEttin_3: -8588787891950359445
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -143,7 +143,8 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
MurkySlaad_0: 8840920326925454589
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -215,7 +215,11 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
MurkySlaad_0: 8840920326925454589
|
||||
MurkySlaad_1: 7211547573801177948
|
||||
MurkySlaad_2: 4068993163099789398
|
||||
MurkySlaad_3: 3739370697971395820
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -143,7 +143,8 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
OchreJelly_0: -2207019685279717077
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -215,7 +215,11 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
OchreJelly_0: -2207019685279717077
|
||||
OchreJelly_1: -1376699025567256128
|
||||
OchreJelly_2: -4721737928146631952
|
||||
OchreJelly_3: 6437957746003176240
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -143,7 +143,8 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
OcularWatcher_0: 905840938178670301
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -215,7 +215,11 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
OcularWatcher_0: 905840938178670301
|
||||
OcularWatcher_1: 736947429455551993
|
||||
OcularWatcher_2: -8894580217276112166
|
||||
OcularWatcher_3: -1088395967450916972
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -143,7 +143,8 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
RedCap_0: -6594101872334784913
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -215,7 +215,11 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
RedCap_0: -6594101872334784913
|
||||
RedCap_1: -5959469344483965777
|
||||
RedCap_2: -8117854852416921030
|
||||
RedCap_3: 836018673528076072
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -143,7 +143,8 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
ShriekerMushroom_0: 2777739401088810008
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -215,7 +215,11 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
ShriekerMushroom_0: 2777739401088810008
|
||||
ShriekerMushroom_1: -8251361982624501364
|
||||
ShriekerMushroom_2: 7142349447311821462
|
||||
ShriekerMushroom_3: 582607441299323310
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -143,7 +143,8 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
StoneTroll_0: -57648714658656815
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -215,7 +215,11 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
StoneTroll_0: -57648714658656815
|
||||
StoneTroll_1: -8169427979484620220
|
||||
StoneTroll_2: 7718889437095694262
|
||||
StoneTroll_3: -5358505587708176550
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -143,7 +143,8 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
SwampTroll_0: -6271500623770248480
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -215,7 +215,11 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
SwampTroll_0: -6271500623770248480
|
||||
SwampTroll_1: 3321221980076029534
|
||||
SwampTroll_2: -821027872216296883
|
||||
SwampTroll_3: 583103957588599937
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -263,7 +263,13 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
Orc-Attack01_0: -5747784035168019909
|
||||
Orc-Attack01_1: 8196637821053982142
|
||||
Orc-Attack01_2: 6854456305891230957
|
||||
Orc-Attack01_3: -3441655991679628507
|
||||
Orc-Attack01_4: 1149191044335307846
|
||||
Orc-Attack01_5: -4662628362427731083
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -263,7 +263,13 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
Orc-Attack02_0: -4382410341179087744
|
||||
Orc-Attack02_1: -310342334101882945
|
||||
Orc-Attack02_2: -4543947773319253168
|
||||
Orc-Attack02_3: 2843740054133409696
|
||||
Orc-Attack02_4: -3675442374903467389
|
||||
Orc-Attack02_5: 7525977105156993497
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -287,7 +287,14 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
Orc-Death_0: 8544846919123988669
|
||||
Orc-Death_1: -401137139762225490
|
||||
Orc-Death_2: 1872452920086712164
|
||||
Orc-Death_3: 5977794959670586378
|
||||
Orc-Death_4: -3050150630142680969
|
||||
Orc-Death_5: 2941728601448590661
|
||||
Orc-Death_6: 5653337787561547612
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -215,7 +215,11 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
Orc-Hurt_0: 8051351617050381877
|
||||
Orc-Hurt_1: -1185003378899358547
|
||||
Orc-Hurt_2: -2628998458732627980
|
||||
Orc-Hurt_3: 2377824496227862384
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -263,7 +263,13 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
Orc-Idle_0: 5120410236738981136
|
||||
Orc-Idle_1: 1133040411461804861
|
||||
Orc-Idle_2: -5096723200824463030
|
||||
Orc-Idle_3: -2225174341924067898
|
||||
Orc-Idle_4: -8233152129326895834
|
||||
Orc-Idle_5: -4010699835880829198
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -311,7 +311,15 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
Orc-Walk_0: 9081233426807069
|
||||
Orc-Walk_1: 4372957803809224375
|
||||
Orc-Walk_2: -1347736431781377632
|
||||
Orc-Walk_3: -5659425469639183808
|
||||
Orc-Walk_4: -60962372088672916
|
||||
Orc-Walk_5: 3404994825279768155
|
||||
Orc-Walk_6: -8575848986319331806
|
||||
Orc-Walk_7: -4323655612262110637
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -1007,7 +1007,44 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
Orc_0: 3799508404887519019
|
||||
Orc_1: -9003958548615516068
|
||||
Orc_10: -5255064192898293917
|
||||
Orc_11: 1775836896072057239
|
||||
Orc_12: 8509750463533020753
|
||||
Orc_13: 3726779511297121340
|
||||
Orc_14: 1292906774393753324
|
||||
Orc_15: 2508835607153844694
|
||||
Orc_16: 160163770084513234
|
||||
Orc_17: -255199864349076070
|
||||
Orc_18: -3969097664858752442
|
||||
Orc_19: 6223794719511703634
|
||||
Orc_2: -4848521796537363852
|
||||
Orc_20: -8189613066579858216
|
||||
Orc_21: -6231698651707420963
|
||||
Orc_22: -7930362091750605017
|
||||
Orc_23: 7151978387250360421
|
||||
Orc_24: 3241123462135466627
|
||||
Orc_25: -4833688072403574906
|
||||
Orc_26: -337217167416535715
|
||||
Orc_27: -1420869352781472879
|
||||
Orc_28: -8537654572011523767
|
||||
Orc_29: 4201440855533994549
|
||||
Orc_3: -4561745191760880128
|
||||
Orc_30: -229307623453473662
|
||||
Orc_31: 6038443146981578319
|
||||
Orc_32: -6751517663992241325
|
||||
Orc_33: 1925807571168068822
|
||||
Orc_34: 3343983511578409606
|
||||
Orc_35: -2407993781451882246
|
||||
Orc_36: -2756539751217007632
|
||||
Orc_4: 2090174075836721236
|
||||
Orc_5: -104981853600970874
|
||||
Orc_6: 2897101806617490989
|
||||
Orc_7: -5387681273772109387
|
||||
Orc_8: -4487082467582646406
|
||||
Orc_9: -4492628054501975806
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -167,7 +167,9 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
Orc-attack01_Effect_0: 3991114556491481497
|
||||
Orc-attack01_Effect_1: -6046457483726830458
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -167,7 +167,9 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
Orc-attack02_Effect_0: -7593954805504680956
|
||||
Orc-attack02_Effect_1: -2671378827300738900
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -983,7 +983,43 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
Orc_0: 3799508404887519019
|
||||
Orc_1: -9003958548615516068
|
||||
Orc_10: -5255064192898293917
|
||||
Orc_11: 1775836896072057239
|
||||
Orc_12: 8509750463533020753
|
||||
Orc_13: 3726779511297121340
|
||||
Orc_14: 1292906774393753324
|
||||
Orc_15: 2508835607153844694
|
||||
Orc_16: 160163770084513234
|
||||
Orc_17: -255199864349076070
|
||||
Orc_18: -3969097664858752442
|
||||
Orc_19: 6223794719511703634
|
||||
Orc_2: -4848521796537363852
|
||||
Orc_20: -8189613066579858216
|
||||
Orc_21: -6231698651707420963
|
||||
Orc_22: -7930362091750605017
|
||||
Orc_23: 7151978387250360421
|
||||
Orc_24: 3241123462135466627
|
||||
Orc_25: -4833688072403574906
|
||||
Orc_26: -337217167416535715
|
||||
Orc_27: -1420869352781472879
|
||||
Orc_28: -8537654572011523767
|
||||
Orc_29: 4201440855533994549
|
||||
Orc_3: -4561745191760880128
|
||||
Orc_30: -229307623453473662
|
||||
Orc_31: 6038443146981578319
|
||||
Orc_32: -6751517663992241325
|
||||
Orc_33: 1925807571168068822
|
||||
Orc_34: 3343983511578409606
|
||||
Orc_35: -2407993781451882246
|
||||
Orc_4: 2090174075836721236
|
||||
Orc_5: -104981853600970874
|
||||
Orc_6: 2897101806617490989
|
||||
Orc_7: -5387681273772109387
|
||||
Orc_8: -4487082467582646406
|
||||
Orc_9: -4492628054501975806
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -263,7 +263,13 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
Orc-Attack01_0: -5747784035168019909
|
||||
Orc-Attack01_1: 8196637821053982142
|
||||
Orc-Attack01_2: 6854456305891230957
|
||||
Orc-Attack01_3: -3441655991679628507
|
||||
Orc-Attack01_4: 1149191044335307846
|
||||
Orc-Attack01_5: -4662628362427731083
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -263,7 +263,13 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
Orc-Attack02_0: -4382410341179087744
|
||||
Orc-Attack02_1: -310342334101882945
|
||||
Orc-Attack02_2: -4543947773319253168
|
||||
Orc-Attack02_3: 2843740054133409696
|
||||
Orc-Attack02_4: -3675442374903467389
|
||||
Orc-Attack02_5: 7525977105156993497
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -263,7 +263,13 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
Orc-Death_0: 8544846919123988669
|
||||
Orc-Death_1: -401137139762225490
|
||||
Orc-Death_2: 1872452920086712164
|
||||
Orc-Death_3: 5977794959670586378
|
||||
Orc-Death_4: -3050150630142680969
|
||||
Orc-Death_5: 2941728601448590661
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -215,7 +215,11 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
Orc-Hurt_0: 8051351617050381877
|
||||
Orc-Hurt_1: -1185003378899358547
|
||||
Orc-Hurt_2: -2628998458732627980
|
||||
Orc-Hurt_3: 2377824496227862384
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -263,7 +263,13 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
Orc-Idle_0: 5120410236738981136
|
||||
Orc-Idle_1: 1133040411461804861
|
||||
Orc-Idle_2: -5096723200824463030
|
||||
Orc-Idle_3: -2225174341924067898
|
||||
Orc-Idle_4: -8233152129326895834
|
||||
Orc-Idle_5: -4010699835880829198
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -311,7 +311,15 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
Orc-Walk_0: 9081233426807069
|
||||
Orc-Walk_1: 4372957803809224375
|
||||
Orc-Walk_2: -1347736431781377632
|
||||
Orc-Walk_3: -5659425469639183808
|
||||
Orc-Walk_4: -60962372088672916
|
||||
Orc-Walk_5: 3404994825279768155
|
||||
Orc-Walk_6: -8575848986319331806
|
||||
Orc-Walk_7: -4323655612262110637
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -983,7 +983,43 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
Orc_0: 3799508404887519019
|
||||
Orc_1: -9003958548615516068
|
||||
Orc_10: -5255064192898293917
|
||||
Orc_11: 1775836896072057239
|
||||
Orc_12: 8509750463533020753
|
||||
Orc_13: 3726779511297121340
|
||||
Orc_14: 1292906774393753324
|
||||
Orc_15: 2508835607153844694
|
||||
Orc_16: 160163770084513234
|
||||
Orc_17: -255199864349076070
|
||||
Orc_18: -3969097664858752442
|
||||
Orc_19: 6223794719511703634
|
||||
Orc_2: -4848521796537363852
|
||||
Orc_20: -8189613066579858216
|
||||
Orc_21: -6231698651707420963
|
||||
Orc_22: -7930362091750605017
|
||||
Orc_23: 7151978387250360421
|
||||
Orc_24: 3241123462135466627
|
||||
Orc_25: -4833688072403574906
|
||||
Orc_26: -337217167416535715
|
||||
Orc_27: -1420869352781472879
|
||||
Orc_28: -8537654572011523767
|
||||
Orc_29: 4201440855533994549
|
||||
Orc_3: -4561745191760880128
|
||||
Orc_30: -229307623453473662
|
||||
Orc_31: 6038443146981578319
|
||||
Orc_32: -6751517663992241325
|
||||
Orc_33: 1925807571168068822
|
||||
Orc_34: 3343983511578409606
|
||||
Orc_35: -2407993781451882246
|
||||
Orc_4: 2090174075836721236
|
||||
Orc_5: -104981853600970874
|
||||
Orc_6: 2897101806617490989
|
||||
Orc_7: -5387681273772109387
|
||||
Orc_8: -4487082467582646406
|
||||
Orc_9: -4492628054501975806
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -143,7 +143,8 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
Orc-shadow_0: 302939637799047691
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -263,7 +263,13 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
Orc-shadow_attack02_0: -2665038268641758501
|
||||
Orc-shadow_attack02_1: -542439712800630156
|
||||
Orc-shadow_attack02_2: 1651962475794330082
|
||||
Orc-shadow_attack02_3: -5895143150817008794
|
||||
Orc-shadow_attack02_4: -5759945029389773177
|
||||
Orc-shadow_attack02_5: 9038573462005915293
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -215,7 +215,11 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
Orc-shadow_death_0: -5771478684454141434
|
||||
Orc-shadow_death_1: -1324071862299577995
|
||||
Orc-shadow_death_2: -1580776445174962102
|
||||
Orc-shadow_death_3: 6097641245615169911
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -143,7 +143,8 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
Arrow01(100x100)_0: 1158201469468389350
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -143,7 +143,8 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
Arrow01(32x32)_0: 2367449957533476818
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -263,7 +263,13 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
Soldier-Attack01_0: -3291933047493928793
|
||||
Soldier-Attack01_1: -6387132180496740656
|
||||
Soldier-Attack01_2: 3584784805190714906
|
||||
Soldier-Attack01_3: -4079507207558419125
|
||||
Soldier-Attack01_4: -868544849082176367
|
||||
Soldier-Attack01_5: -3853612353132079948
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -311,7 +311,15 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
Soldier-Attack02_0: 4811190364059900513
|
||||
Soldier-Attack02_1: -3630134925126372854
|
||||
Soldier-Attack02_2: -3996107768381173192
|
||||
Soldier-Attack02_3: 8152592829446542042
|
||||
Soldier-Attack02_4: 4949258004858939775
|
||||
Soldier-Attack02_5: -8030318945529727460
|
||||
Soldier-Attack02_6: -5444968504786303033
|
||||
Soldier-Attack02_7: 4400260421584532726
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -335,7 +335,16 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
Soldier-Attack03_0: 2678340717539739597
|
||||
Soldier-Attack03_1: 8264772736047417878
|
||||
Soldier-Attack03_2: -8177698193463788761
|
||||
Soldier-Attack03_3: 3077160686069078848
|
||||
Soldier-Attack03_4: 7626175841199979023
|
||||
Soldier-Attack03_5: 8620046016495470792
|
||||
Soldier-Attack03_6: -7091074453508830651
|
||||
Soldier-Attack03_7: -4451581827623112804
|
||||
Soldier-Attack03_8: 8521224890656062442
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -215,7 +215,11 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
Soldier-Death_0: 6492841580993013340
|
||||
Soldier-Death_1: -914185199855827783
|
||||
Soldier-Death_2: -3005694953463571259
|
||||
Soldier-Death_3: -6014531536768240529
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -215,7 +215,11 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
Soldier-Hurt_0: 2394668732000811328
|
||||
Soldier-Hurt_1: 2011182554591317053
|
||||
Soldier-Hurt_2: 7915317491827125556
|
||||
Soldier-Hurt_3: -6471843385825578902
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -263,7 +263,13 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
Soldier-Idle_0: -7978735674136817684
|
||||
Soldier-Idle_1: 8849163925938299382
|
||||
Soldier-Idle_2: -3697785639171859907
|
||||
Soldier-Idle_3: -1830650023417107544
|
||||
Soldier-Idle_4: 5344081390441601760
|
||||
Soldier-Idle_5: 1830586431241935133
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -167,7 +167,9 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
Soldier-Attack01_Effect_0: 9066030749163298722
|
||||
Soldier-Attack01_Effect_1: -8522829898002315717
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -167,7 +167,9 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
Soldier-Attack02_Effect_0: -2255074516774000581
|
||||
Soldier-Attack02_Effect_1: -5637797018831071397
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -143,7 +143,8 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
Soldier-Attack03_Effect_0: 1217284662206331051
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -1151,7 +1151,50 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
Soldier_0: -3868812660829053132
|
||||
Soldier_1: 4748496047744815929
|
||||
Soldier_10: 2742716491997213031
|
||||
Soldier_11: -62850490490929932
|
||||
Soldier_12: 1974314120003528485
|
||||
Soldier_13: -1692326888749062731
|
||||
Soldier_14: -8366205455049171761
|
||||
Soldier_15: -7202218996535425993
|
||||
Soldier_16: 2005700920829779246
|
||||
Soldier_17: -8503598735362372552
|
||||
Soldier_18: 6623777501556897501
|
||||
Soldier_19: 1444713933976088483
|
||||
Soldier_2: 2805721153289186860
|
||||
Soldier_20: -2456867076102776368
|
||||
Soldier_21: 233768993629577626
|
||||
Soldier_22: -5651435147518545271
|
||||
Soldier_23: 6755985663967675594
|
||||
Soldier_24: -5687253064817044187
|
||||
Soldier_25: -7404624186788814934
|
||||
Soldier_26: 235376660964857629
|
||||
Soldier_27: -3603710560016398688
|
||||
Soldier_28: 2776055807973595377
|
||||
Soldier_29: 2180410314965149893
|
||||
Soldier_3: -5331859181223373285
|
||||
Soldier_30: -5707902934612390786
|
||||
Soldier_31: -1334288636235299032
|
||||
Soldier_32: 4927697857163613625
|
||||
Soldier_33: 1282726659025278273
|
||||
Soldier_34: -8271518659021732292
|
||||
Soldier_35: 6025165729927441604
|
||||
Soldier_36: 6712230105077093423
|
||||
Soldier_37: -4285923211763185300
|
||||
Soldier_38: 156713526631975120
|
||||
Soldier_39: 2133790352986412820
|
||||
Soldier_4: 8924183435215946824
|
||||
Soldier_40: 5816303354900572512
|
||||
Soldier_41: 6284592324512227996
|
||||
Soldier_42: 7050324879617185217
|
||||
Soldier_5: 152417265559848108
|
||||
Soldier_6: -5572970920532211618
|
||||
Soldier_7: -2880666656720651278
|
||||
Soldier_8: -1733617733217763490
|
||||
Soldier_9: -7227817022452064393
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -143,7 +143,8 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
Soldier-Shadow_0: -6860611473662190531
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -215,7 +215,11 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
Soldier-Shadow_death_0: -6947405640139729143
|
||||
Soldier-Shadow_death_1: 359901643681571809
|
||||
Soldier-Shadow_death_2: 2257250250645868444
|
||||
Soldier-Shadow_death_3: 4450727295261284586
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -263,7 +263,13 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
Soldier-Attack01_0: -3291933047493928793
|
||||
Soldier-Attack01_1: -6387132180496740656
|
||||
Soldier-Attack01_2: 3584784805190714906
|
||||
Soldier-Attack01_3: -4079507207558419125
|
||||
Soldier-Attack01_4: -868544849082176367
|
||||
Soldier-Attack01_5: -3853612353132079948
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -263,7 +263,13 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
Soldier-Attack02_0: 4811190364059900513
|
||||
Soldier-Attack02_1: -3630134925126372854
|
||||
Soldier-Attack02_2: -3996107768381173192
|
||||
Soldier-Attack02_3: 8152592829446542042
|
||||
Soldier-Attack02_4: 4949258004858939775
|
||||
Soldier-Attack02_5: -8030318945529727460
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -335,7 +335,16 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
Soldier-Attack03_0: 2678340717539739597
|
||||
Soldier-Attack03_1: 8264772736047417878
|
||||
Soldier-Attack03_2: -8177698193463788761
|
||||
Soldier-Attack03_3: 3077160686069078848
|
||||
Soldier-Attack03_4: 7626175841199979023
|
||||
Soldier-Attack03_5: 8620046016495470792
|
||||
Soldier-Attack03_6: -7091074453508830651
|
||||
Soldier-Attack03_7: -4451581827623112804
|
||||
Soldier-Attack03_8: 8521224890656062442
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -215,7 +215,11 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
Soldier-Death_0: 6492841580993013340
|
||||
Soldier-Death_1: -914185199855827783
|
||||
Soldier-Death_2: -3005694953463571259
|
||||
Soldier-Death_3: -6014531536768240529
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -215,7 +215,11 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
Soldier-Hurt_0: 2394668732000811328
|
||||
Soldier-Hurt_1: 2011182554591317053
|
||||
Soldier-Hurt_2: 7915317491827125556
|
||||
Soldier-Hurt_3: -6471843385825578902
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -263,7 +263,13 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
Soldier-Idle_0: -7978735674136817684
|
||||
Soldier-Idle_1: 8849163925938299382
|
||||
Soldier-Idle_2: -3697785639171859907
|
||||
Soldier-Idle_3: -1830650023417107544
|
||||
Soldier-Idle_4: 5344081390441601760
|
||||
Soldier-Idle_5: 1830586431241935133
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -263,7 +263,13 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
Soldier-Shadow_attack2_0: 2261135143969369812
|
||||
Soldier-Shadow_attack2_1: 191840939740295888
|
||||
Soldier-Shadow_attack2_2: 9144558672366216909
|
||||
Soldier-Shadow_attack2_3: -2368509944092420301
|
||||
Soldier-Shadow_attack2_4: -5127053160540000551
|
||||
Soldier-Shadow_attack2_5: -822343735328164323
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -311,7 +311,15 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
Soldier-Walk_0: -6369722787752497797
|
||||
Soldier-Walk_1: -4195647796165820189
|
||||
Soldier-Walk_2: -8464097173789389841
|
||||
Soldier-Walk_3: 4675039378008736925
|
||||
Soldier-Walk_4: 8618280867664089372
|
||||
Soldier-Walk_5: 1914519734761289132
|
||||
Soldier-Walk_6: -7471997188321437821
|
||||
Soldier-Walk_7: -1920940785554729860
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
@ -1151,7 +1151,50 @@ TextureImporter:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
nameFileIdTable:
|
||||
Soldier_0: -3868812660829053132
|
||||
Soldier_1: 4748496047744815929
|
||||
Soldier_10: 2742716491997213031
|
||||
Soldier_11: -62850490490929932
|
||||
Soldier_12: 1974314120003528485
|
||||
Soldier_13: -1692326888749062731
|
||||
Soldier_14: -8366205455049171761
|
||||
Soldier_15: -7202218996535425993
|
||||
Soldier_16: 2005700920829779246
|
||||
Soldier_17: -8503598735362372552
|
||||
Soldier_18: 6623777501556897501
|
||||
Soldier_19: 1444713933976088483
|
||||
Soldier_2: 2805721153289186860
|
||||
Soldier_20: -2456867076102776368
|
||||
Soldier_21: 233768993629577626
|
||||
Soldier_22: -5651435147518545271
|
||||
Soldier_23: 6755985663967675594
|
||||
Soldier_24: -5687253064817044187
|
||||
Soldier_25: -7404624186788814934
|
||||
Soldier_26: 235376660964857629
|
||||
Soldier_27: -3603710560016398688
|
||||
Soldier_28: 2776055807973595377
|
||||
Soldier_29: 2180410314965149893
|
||||
Soldier_3: -5331859181223373285
|
||||
Soldier_30: -5707902934612390786
|
||||
Soldier_31: -1334288636235299032
|
||||
Soldier_32: 4927697857163613625
|
||||
Soldier_33: 1282726659025278273
|
||||
Soldier_34: -8271518659021732292
|
||||
Soldier_35: 6025165729927441604
|
||||
Soldier_36: 6712230105077093423
|
||||
Soldier_37: -4285923211763185300
|
||||
Soldier_38: 156713526631975120
|
||||
Soldier_39: 2133790352986412820
|
||||
Soldier_4: 8924183435215946824
|
||||
Soldier_40: 5816303354900572512
|
||||
Soldier_41: 6284592324512227996
|
||||
Soldier_42: 7050324879617185217
|
||||
Soldier_5: 152417265559848108
|
||||
Soldier_6: -5572970920532211618
|
||||
Soldier_7: -2880666656720651278
|
||||
Soldier_8: -1733617733217763490
|
||||
Soldier_9: -7227817022452064393
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 363 B |
Binary file not shown.
Before Width: | Height: | Size: 327 B |
Binary file not shown.
Before Width: | Height: | Size: 363 B |
@ -1,151 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 6f85d46580aec4a4b88be1128aa5c2bb
|
||||
TextureImporter:
|
||||
internalIDToNameTable:
|
||||
- first:
|
||||
213: -5280634194711921966
|
||||
second: armor_01c_0
|
||||
externalObjects: {}
|
||||
serializedVersion: 13
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 0
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapsPreserveCoverage: 0
|
||||
alphaTestReferenceValue: 0.5
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
flipGreenChannel: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
vTOnly: 0
|
||||
ignoreMipmapLimit: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
serializedVersion: 2
|
||||
filterMode: 1
|
||||
aniso: 1
|
||||
mipBias: 0
|
||||
wrapU: 1
|
||||
wrapV: 1
|
||||
wrapW: 1
|
||||
nPOTScale: 0
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 2
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: 0.5, y: 0.5}
|
||||
spritePixelsToUnits: 100
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spriteGenerateFallbackPhysicsShape: 1
|
||||
alphaUsage: 1
|
||||
alphaIsTransparency: 1
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 8
|
||||
textureShape: 1
|
||||
singleChannelComponent: 0
|
||||
flipbookRows: 1
|
||||
flipbookColumns: 1
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
ignorePngGamma: 0
|
||||
applyGammaDecoding: 0
|
||||
swizzle: 50462976
|
||||
cookieLightType: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 3
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: Android
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites:
|
||||
- serializedVersion: 2
|
||||
name: armor_01c_0
|
||||
rect:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 0
|
||||
width: 16
|
||||
height: 16
|
||||
alignment: 0
|
||||
pivot: {x: 0, y: 0}
|
||||
border: {x: 0, y: 0, z: 0, w: 0}
|
||||
outline: []
|
||||
physicsShape: []
|
||||
tessellationDetail: -1
|
||||
bones: []
|
||||
spriteID: 2da3a6b8d2b67b6b0800000000000000
|
||||
internalID: -5280634194711921966
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID:
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
Binary file not shown.
Before Width: | Height: | Size: 366 B |
@ -1,151 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 552dfc4224356b64ab071fe54a3ad1e7
|
||||
TextureImporter:
|
||||
internalIDToNameTable:
|
||||
- first:
|
||||
213: 6561790214489973282
|
||||
second: armor_01d_0
|
||||
externalObjects: {}
|
||||
serializedVersion: 13
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 0
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapsPreserveCoverage: 0
|
||||
alphaTestReferenceValue: 0.5
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
flipGreenChannel: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
vTOnly: 0
|
||||
ignoreMipmapLimit: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
serializedVersion: 2
|
||||
filterMode: 1
|
||||
aniso: 1
|
||||
mipBias: 0
|
||||
wrapU: 1
|
||||
wrapV: 1
|
||||
wrapW: 1
|
||||
nPOTScale: 0
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 2
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: 0.5, y: 0.5}
|
||||
spritePixelsToUnits: 100
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spriteGenerateFallbackPhysicsShape: 1
|
||||
alphaUsage: 1
|
||||
alphaIsTransparency: 1
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 8
|
||||
textureShape: 1
|
||||
singleChannelComponent: 0
|
||||
flipbookRows: 1
|
||||
flipbookColumns: 1
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
ignorePngGamma: 0
|
||||
applyGammaDecoding: 0
|
||||
swizzle: 50462976
|
||||
cookieLightType: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 3
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: Android
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites:
|
||||
- serializedVersion: 2
|
||||
name: armor_01d_0
|
||||
rect:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 0
|
||||
width: 16
|
||||
height: 16
|
||||
alignment: 0
|
||||
pivot: {x: 0, y: 0}
|
||||
border: {x: 0, y: 0, z: 0, w: 0}
|
||||
outline: []
|
||||
physicsShape: []
|
||||
tessellationDetail: -1
|
||||
bones: []
|
||||
spriteID: 2222f492f69201b50800000000000000
|
||||
internalID: 6561790214489973282
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID:
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user