23 changed files with 270 additions and 9 deletions
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 5d697dbce85032d4dba2a90d7bb50290 |
||||
folderAsset: yes |
||||
DefaultImporter: |
||||
externalObjects: {} |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
@ -0,0 +1,26 @@
|
||||
%YAML 1.1 |
||||
%TAG !u! tag:unity3d.com,2011: |
||||
--- !u!114 &11400000 |
||||
MonoBehaviour: |
||||
m_ObjectHideFlags: 0 |
||||
m_CorrespondingSourceObject: {fileID: 0} |
||||
m_PrefabInstance: {fileID: 0} |
||||
m_PrefabAsset: {fileID: 0} |
||||
m_GameObject: {fileID: 0} |
||||
m_Enabled: 1 |
||||
m_EditorHideFlags: 0 |
||||
m_Script: {fileID: 11500000, guid: 65d0d896e6a9aba4c86524d1ead223f2, type: 3} |
||||
m_Name: _comUtil |
||||
m_EditorClassIdentifier: |
||||
serializationData: |
||||
SerializedFormat: 2 |
||||
SerializedBytes: |
||||
ReferencedUnityObjects: [] |
||||
SerializedBytesString: |
||||
Prefab: {fileID: 0} |
||||
PrefabModificationsReferencedUnityObjects: [] |
||||
PrefabModifications: [] |
||||
SerializationNodes: [] |
||||
cangku_chushi: 3 |
||||
des_xishu: 2 |
||||
ta_chushi_unlock: 01000000cc00000091010000cb000000 |
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 7ee0eb7708acae845ae0445697042da4 |
||||
NativeFormatImporter: |
||||
externalObjects: {} |
||||
mainObjectFileID: 11400000 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2 |
||||
guid: f681dec3cba786f4ba476100c5a6f29e |
||||
folderAsset: yes |
||||
DefaultImporter: |
||||
externalObjects: {} |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
@ -0,0 +1,24 @@
|
||||
%YAML 1.1 |
||||
%TAG !u! tag:unity3d.com,2011: |
||||
--- !u!114 &11400000 |
||||
MonoBehaviour: |
||||
m_ObjectHideFlags: 0 |
||||
m_CorrespondingSourceObject: {fileID: 0} |
||||
m_PrefabInstance: {fileID: 0} |
||||
m_PrefabAsset: {fileID: 0} |
||||
m_GameObject: {fileID: 0} |
||||
m_Enabled: 1 |
||||
m_EditorHideFlags: 0 |
||||
m_Script: {fileID: 11500000, guid: 352ae4160560b684498c8ef06a908f94, type: 3} |
||||
m_Name: _monster3Util |
||||
m_EditorClassIdentifier: |
||||
serializationData: |
||||
SerializedFormat: 2 |
||||
SerializedBytes: |
||||
ReferencedUnityObjects: [] |
||||
SerializedBytesString: |
||||
Prefab: {fileID: 0} |
||||
PrefabModificationsReferencedUnityObjects: [] |
||||
PrefabModifications: [] |
||||
SerializationNodes: [] |
||||
Data: [] |
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 3648edb4f0c677a4485b6b4c2deef683 |
||||
NativeFormatImporter: |
||||
externalObjects: {} |
||||
mainObjectFileID: 11400000 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
@ -0,0 +1,38 @@
|
||||
//------------------------------------------------------------------------------ |
||||
// <auto-generated> |
||||
// This code was generated by a tool. |
||||
// Runtime Version:4.0.30319.42000 |
||||
// |
||||
// Changes to this file may cause incorrect behavior and will be lost if |
||||
// the code is regenerated. |
||||
// </auto-generated> |
||||
//------------------------------------------------------------------------------ |
||||
|
||||
namespace Tools.ExcelResolver |
||||
{ |
||||
using System; |
||||
using System.Collections; |
||||
using System.Collections.Generic; |
||||
using UnityEngine; |
||||
using Sirenix.OdinInspector; |
||||
|
||||
|
||||
public class comUtil : SerializedScriptableObject, IExcelSOUtil |
||||
{ |
||||
|
||||
/// <summary> |
||||
/// 初始仓库空位数 |
||||
/// </summary> |
||||
public int cangku_chushi; |
||||
|
||||
/// <summary> |
||||
/// 防御系数 |
||||
/// </summary> |
||||
public int des_xishu; |
||||
|
||||
/// <summary> |
||||
/// 初始解锁的塔 |
||||
/// </summary> |
||||
public List<Int32> ta_chushi_unlock; |
||||
} |
||||
} |
@ -0,0 +1,2 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 65d0d896e6a9aba4c86524d1ead223f2 |
@ -0,0 +1,98 @@
|
||||
//------------------------------------------------------------------------------ |
||||
// <auto-generated> |
||||
// This code was generated by a tool. |
||||
// Runtime Version:4.0.30319.42000 |
||||
// |
||||
// Changes to this file may cause incorrect behavior and will be lost if |
||||
// the code is regenerated. |
||||
// </auto-generated> |
||||
//------------------------------------------------------------------------------ |
||||
|
||||
namespace Tools.ExcelResolver |
||||
{ |
||||
using System; |
||||
using System.Collections; |
||||
using System.Collections.Generic; |
||||
using UnityEngine; |
||||
using Sirenix.OdinInspector; |
||||
|
||||
|
||||
public class monster3 : SerializedScriptableObject, IExcelSOData |
||||
{ |
||||
|
||||
/// <summary> |
||||
/// 英雄 |
||||
/// </summary> |
||||
public int id; |
||||
|
||||
/// <summary> |
||||
/// 等级 |
||||
/// </summary> |
||||
public int level; |
||||
|
||||
/// <summary> |
||||
/// 星级 |
||||
/// </summary> |
||||
public int star; |
||||
|
||||
/// <summary> |
||||
/// 名称 |
||||
/// </summary> |
||||
public string name; |
||||
|
||||
/// <summary> |
||||
/// icon |
||||
/// </summary> |
||||
public string icon; |
||||
|
||||
/// <summary> |
||||
/// 有宠物 |
||||
/// </summary> |
||||
public bool has; |
||||
|
||||
/// <summary> |
||||
/// 血量 |
||||
/// </summary> |
||||
public int hp; |
||||
|
||||
/// <summary> |
||||
/// 攻击力 |
||||
/// </summary> |
||||
public int atk; |
||||
|
||||
/// <summary> |
||||
/// 移速 |
||||
/// </summary> |
||||
public float speed; |
||||
|
||||
/// <summary> |
||||
/// 位置 |
||||
/// </summary> |
||||
public Vector3 pos; |
||||
|
||||
/// <summary> |
||||
/// 位置 |
||||
/// </summary> |
||||
public Vector2 ches; |
||||
|
||||
/// <summary> |
||||
/// 攻击优先级 |
||||
/// </summary> |
||||
public List<Vector2> attack_target; |
||||
|
||||
/// <summary> |
||||
/// 你好 |
||||
/// </summary> |
||||
public Dictionary<Int32, Single> nihao; |
||||
|
||||
/// <summary> |
||||
/// |
||||
/// </summary> |
||||
public Dictionary<Attribute, Int32> attribute; |
||||
|
||||
/// <summary> |
||||
/// |
||||
/// </summary> |
||||
public CustomizeColor color; |
||||
} |
||||
} |
@ -0,0 +1,2 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 916e0a5dbd451394bb4ac42b142bbb9d |
@ -0,0 +1,25 @@
|
||||
//------------------------------------------------------------------------------ |
||||
// <auto-generated> |
||||
// This code was generated by a tool. |
||||
// Runtime Version:4.0.30319.42000 |
||||
// |
||||
// Changes to this file may cause incorrect behavior and will be lost if |
||||
// the code is regenerated. |
||||
// </auto-generated> |
||||
//------------------------------------------------------------------------------ |
||||
|
||||
namespace Tools.ExcelResolver |
||||
{ |
||||
using System; |
||||
using System.Collections; |
||||
using System.Collections.Generic; |
||||
using UnityEngine; |
||||
using Sirenix.OdinInspector; |
||||
|
||||
|
||||
public class monster3Util : SerializedScriptableObject, IExcelSOUtil |
||||
{ |
||||
|
||||
public List<monster3> Data; |
||||
} |
||||
} |
Loading…
Reference in new issue