add ckg
plantilla base para movimiento básico
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
[CreateAssetMenu (fileName = "Initial Inventory List Data", menuName = "GKC/Create Initial Inventory List Data", order = 51)]
|
||||
public class initialinventoryListData : ScriptableObject
|
||||
{
|
||||
public string Name;
|
||||
|
||||
public int ID;
|
||||
|
||||
[Space]
|
||||
|
||||
public List<initialInventoryObjectInfo> initialInventoryObjectInfoList = new List<initialInventoryObjectInfo> ();
|
||||
|
||||
[System.Serializable]
|
||||
public class initialInventoryObjectInfo
|
||||
{
|
||||
public string Name;
|
||||
public int amount;
|
||||
|
||||
public bool isEquipped;
|
||||
|
||||
public bool addInventoryObject = true;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 14a18edf5c34fa342b66285456c1949c
|
||||
timeCreated: 1677703155
|
||||
licenseType: Store
|
||||
MonoImporter:
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 40995
|
||||
packageName: Game Kit Controller - Shooter Melee Adventure Creator 3D + 2.5D
|
||||
packageVersion: 3.77g
|
||||
assetPath: Assets/Game Kit Controller/Scripts/Inventory/Scriptable Objects/initialinventoryListData.cs
|
||||
uploadId: 814740
|
||||
@@ -0,0 +1,9 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
[CreateAssetMenu (fileName = "Inventory List Data", menuName = "GKC/Create Inventory List Data", order = 51)]
|
||||
public class inventoryListManagerData : ScriptableObject
|
||||
{
|
||||
public List<inventoryCategoryInfo> inventoryList = new List<inventoryCategoryInfo> ();
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
fileFormatVersion: 2
|
||||
guid: a85dbdace788e3b4ca3ffc77fc712a66
|
||||
timeCreated: 1586348770
|
||||
licenseType: Store
|
||||
MonoImporter:
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 40995
|
||||
packageName: Game Kit Controller - Shooter Melee Adventure Creator 3D + 2.5D
|
||||
packageVersion: 3.77g
|
||||
assetPath: Assets/Game Kit Controller/Scripts/Inventory/Scriptable Objects/inventoryListManagerData.cs
|
||||
uploadId: 814740
|
||||
Reference in New Issue
Block a user