Scene management, levelgroup, entity spawn, battles (WIP)
This commit is contained in:
parent
ace68414f7
commit
b093824270
515 changed files with 172754 additions and 127 deletions
11
RPG.GameCore/Enums/MonsterRank.cs
Normal file
11
RPG.GameCore/Enums/MonsterRank.cs
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
namespace RPG.GameCore.Enums;
|
||||||
|
|
||||||
|
public enum MonsterRank
|
||||||
|
{
|
||||||
|
Unknow = 0,
|
||||||
|
Minion = 1,
|
||||||
|
MinionLv2 = 2,
|
||||||
|
Elite = 3,
|
||||||
|
LittleBoss = 4,
|
||||||
|
BigBoss = 5
|
||||||
|
}
|
22
RPG.GameCore/Enums/PropState.cs
Normal file
22
RPG.GameCore/Enums/PropState.cs
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
namespace RPG.GameCore.Enums;
|
||||||
|
|
||||||
|
public enum PropState
|
||||||
|
{
|
||||||
|
Closed = 0,
|
||||||
|
Open = 1,
|
||||||
|
Locked = 2,
|
||||||
|
BridgeState1 = 3,
|
||||||
|
BridgeState2 = 4,
|
||||||
|
BridgeState3 = 5,
|
||||||
|
BridgeState4 = 6,
|
||||||
|
CheckPointDisable = 7,
|
||||||
|
CheckPointEnable = 8,
|
||||||
|
TriggerDisable = 9,
|
||||||
|
TriggerEnable = 10,
|
||||||
|
ChestLocked = 11,
|
||||||
|
ChestClosed = 12,
|
||||||
|
ChestUsed = 13,
|
||||||
|
Elevator1 = 14,
|
||||||
|
Elevator2 = 15,
|
||||||
|
Elevator3 = 16
|
||||||
|
}
|
10
RPG.GameCore/Enums/StageType.cs
Normal file
10
RPG.GameCore/Enums/StageType.cs
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
namespace RPG.GameCore.Enums;
|
||||||
|
|
||||||
|
public enum StageType
|
||||||
|
{
|
||||||
|
Unknown = 0,
|
||||||
|
Mainline = 1,
|
||||||
|
Maze = 2,
|
||||||
|
Adventure = 3,
|
||||||
|
Cocoon = 4
|
||||||
|
}
|
|
@ -3,15 +3,19 @@ using System.Reflection;
|
||||||
using System.Text.Json;
|
using System.Text.Json;
|
||||||
using Microsoft.Extensions.Logging;
|
using Microsoft.Extensions.Logging;
|
||||||
using RPG.GameCore.Excel.Attributes;
|
using RPG.GameCore.Excel.Attributes;
|
||||||
|
using RPG.GameCore.Resources;
|
||||||
|
|
||||||
namespace RPG.GameCore.Excel;
|
namespace RPG.GameCore.Excel;
|
||||||
public class ExcelTables
|
public class ExcelTables
|
||||||
{
|
{
|
||||||
|
private readonly IResourceProvider _resourceProvider;
|
||||||
private readonly ILogger _logger;
|
private readonly ILogger _logger;
|
||||||
|
|
||||||
private ImmutableDictionary<ExcelType, ImmutableArray<ExcelRow>>? _tables;
|
private ImmutableDictionary<ExcelType, ImmutableArray<ExcelRow>>? _tables;
|
||||||
|
|
||||||
public ExcelTables(ILogger<ExcelTables> logger)
|
public ExcelTables(IResourceProvider resourceProvider, ILogger<ExcelTables> logger)
|
||||||
{
|
{
|
||||||
|
_resourceProvider = resourceProvider;
|
||||||
_logger = logger;
|
_logger = logger;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -50,10 +54,8 @@ public class ExcelTables
|
||||||
{
|
{
|
||||||
ExcelTableAttribute attribute = type.GetCustomAttribute<ExcelTableAttribute>()!;
|
ExcelTableAttribute attribute = type.GetCustomAttribute<ExcelTableAttribute>()!;
|
||||||
|
|
||||||
// TODO: asset provider
|
JsonDocument tableJson = _resourceProvider.GetExcelTableJson(attribute.Path);
|
||||||
|
var rows = ImmutableArray.CreateBuilder<ExcelRow>();
|
||||||
JsonDocument tableJson = JsonDocument.Parse(File.ReadAllText("data/excel/" + attribute.Path));
|
|
||||||
ImmutableArray<ExcelRow>.Builder rows = ImmutableArray.CreateBuilder<ExcelRow>();
|
|
||||||
|
|
||||||
foreach (JsonProperty property in tableJson.RootElement.EnumerateObject())
|
foreach (JsonProperty property in tableJson.RootElement.EnumerateObject())
|
||||||
{
|
{
|
||||||
|
|
|
@ -3,5 +3,8 @@ public enum ExcelType
|
||||||
{
|
{
|
||||||
Avatar,
|
Avatar,
|
||||||
MainMission,
|
MainMission,
|
||||||
MapEntry
|
MapEntry,
|
||||||
|
Monster,
|
||||||
|
MonsterTemplate,
|
||||||
|
Stage
|
||||||
}
|
}
|
||||||
|
|
38
RPG.GameCore/Excel/MonsterRow.cs
Normal file
38
RPG.GameCore/Excel/MonsterRow.cs
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
using RPG.GameCore.Enums;
|
||||||
|
using RPG.GameCore.Excel.Attributes;
|
||||||
|
using RPG.GameCore.Types;
|
||||||
|
using System.Text.Json.Serialization;
|
||||||
|
|
||||||
|
namespace RPG.GameCore.Excel;
|
||||||
|
|
||||||
|
[ExcelTable("MonsterExcelTable.json", ExcelType.Monster)]
|
||||||
|
public class MonsterRow : ExcelRow
|
||||||
|
{
|
||||||
|
public override uint Id => MonsterID;
|
||||||
|
|
||||||
|
public uint MonsterID { get; set; } // 0x10
|
||||||
|
public uint MonsterTemplateID { get; set; } // 0x14
|
||||||
|
public TextID MonsterName { get; set; } // 0x18
|
||||||
|
public TextID MonsterIntroduction { get; set; } // 0x1C
|
||||||
|
public uint MonsterType { get; set; } // 0x20
|
||||||
|
public uint Level { get; set; } // 0x24
|
||||||
|
public uint HardLevelGroup { get; set; } // 0x28
|
||||||
|
public uint EliteGroup { get; set; } // 0x2C
|
||||||
|
[JsonConverter(typeof(JsonStringEnumConverter))]
|
||||||
|
public MonsterRank Rank { get; set; } // 0x30
|
||||||
|
public FixPoint AttackModifyRatio { get; set; } // 0x38
|
||||||
|
public FixPoint DefenceModifyRatio { get; set; } // 0x40
|
||||||
|
public FixPoint HPModifyRatio { get; set; } // 0x48
|
||||||
|
public FixPoint SpeedModifyRatio { get; set; } // 0x50
|
||||||
|
public FixPoint StanceModifyRatio { get; set; } // 0x58
|
||||||
|
public FixPoint AttackModifyValue { get; set; } // 0x60
|
||||||
|
public FixPoint DefenceModifyValue { get; set; } // 0x68
|
||||||
|
public FixPoint HPModifyValue { get; set; } // 0x70
|
||||||
|
public FixPoint SpeedModifyValue { get; set; } // 0x78
|
||||||
|
public FixPoint StanceModifyValue { get; set; } // 0x80
|
||||||
|
public uint[] SkillList { get; set; } = []; // 0x88
|
||||||
|
public int StanceCountDelta { get; set; } // 0xA8
|
||||||
|
public string[] CustomValueTags { get; set; } = []; // 0xB0
|
||||||
|
public GCINNHHNFMP[] DamageTypeResistance { get; set; } = []; // 0xC0
|
||||||
|
public bool Release { get; set; } // 0xC8
|
||||||
|
}
|
37
RPG.GameCore/Excel/MonsterTemplateRow.cs
Normal file
37
RPG.GameCore/Excel/MonsterTemplateRow.cs
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
using RPG.GameCore.Enums;
|
||||||
|
using RPG.GameCore.Excel.Attributes;
|
||||||
|
using RPG.GameCore.Types;
|
||||||
|
using System.Text.Json.Serialization;
|
||||||
|
|
||||||
|
namespace RPG.GameCore.Excel;
|
||||||
|
|
||||||
|
[ExcelTable("MonsterTemplateExcelTable.json", ExcelType.MonsterTemplate)]
|
||||||
|
public class MonsterTemplateRow : ExcelRow
|
||||||
|
{
|
||||||
|
public override uint Id => MonsterTemplateID;
|
||||||
|
|
||||||
|
public uint MonsterTemplateID { get; set; } // 0x10
|
||||||
|
public TextID MonsterName { get; set; } // 0x14
|
||||||
|
public string MonsterBaseType { get; set; } = string.Empty; // 0x18
|
||||||
|
public string JsonConfig { get; set; } = string.Empty; // 0x20
|
||||||
|
public string IconPath { get; set; } = string.Empty; // 0x28
|
||||||
|
public string RoundIconPath { get; set; } = string.Empty; // 0x30
|
||||||
|
public string ImagePath { get; set; } = string.Empty; // 0x38
|
||||||
|
public string PrefabPath { get; set; } = string.Empty; // 0x40
|
||||||
|
public uint ConfigType { get; set; } // 0x48
|
||||||
|
public uint NatureID { get; set; } // 0x4C
|
||||||
|
public FixPoint AttackBase { get; set; } // 0x50
|
||||||
|
public FixPoint DefenceBase { get; set; } // 0x58
|
||||||
|
public FixPoint HPBase { get; set; } // 0x60
|
||||||
|
public FixPoint SpeedBase { get; set; } // 0x68
|
||||||
|
public FixPoint StanceBase { get; set; } // 0x70
|
||||||
|
public FixPoint CriticalChanceBase { get; set; } // 0x78
|
||||||
|
public FixPoint CriticalDamageBase { get; set; } // 0x80
|
||||||
|
public FixPoint StatusResistanceBase { get; set; } // 0x88
|
||||||
|
public FixPoint MinimumFatigueRatio { get; set; } // 0x90
|
||||||
|
public string AIPath { get; set; } = string.Empty; // 0x98
|
||||||
|
public int StanceCount { get; set; } // 0xA0
|
||||||
|
[JsonConverter(typeof(JsonStringEnumConverter))]
|
||||||
|
public AttackDamageType StanceType { get; set; } // 0xA4
|
||||||
|
public FixPoint InitialDelayRatio { get; set; } // 0xA8
|
||||||
|
}
|
36
RPG.GameCore/Excel/StageRow.cs
Normal file
36
RPG.GameCore/Excel/StageRow.cs
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
using RPG.GameCore.Enums;
|
||||||
|
using RPG.GameCore.Excel.Attributes;
|
||||||
|
using RPG.GameCore.Types;
|
||||||
|
using System.Text.Json.Serialization;
|
||||||
|
|
||||||
|
namespace RPG.GameCore.Excel;
|
||||||
|
|
||||||
|
[ExcelTable("StageExcelTable.json", ExcelType.Stage)]
|
||||||
|
public class StageRow : ExcelRow
|
||||||
|
{
|
||||||
|
public override uint Id => StageID;
|
||||||
|
|
||||||
|
public uint StageID { get; set; } // 0x10
|
||||||
|
[JsonConverter(typeof(JsonStringEnumConverter))]
|
||||||
|
public StageType StageType { get; set; } // 0x14
|
||||||
|
public TextID StageName { get; set; } // 0x18
|
||||||
|
public uint HardLevelGroup { get; set; } // 0x1C
|
||||||
|
public uint Level { get; set; } // 0x20
|
||||||
|
public string LevelGraphPath { get; set; } = string.Empty; // 0x28
|
||||||
|
public string[] StageAbilityConfig { get; set; } = []; // 0x30
|
||||||
|
public StageMonsterWave[] MonsterList { get; set; } = []; // 0x48
|
||||||
|
public string[] LevelLoseCondition { get; set; } = []; // 0x50
|
||||||
|
public string[] LevelWinCondition { get; set; } = []; // 0x58
|
||||||
|
public bool ForbidAutoBattle { get; set; } // 0x60
|
||||||
|
public bool Release { get; set; } // 0x61
|
||||||
|
public bool ForbidExitBattle { get; set; } // 0x62
|
||||||
|
}
|
||||||
|
|
||||||
|
public class StageMonsterWave
|
||||||
|
{
|
||||||
|
public uint Monster0 { get; set; } // 0x10
|
||||||
|
public uint Monster1 { get; set; } // 0x14
|
||||||
|
public uint Monster2 { get; set; } // 0x18
|
||||||
|
public uint Monster3 { get; set; } // 0x1C
|
||||||
|
public uint Monster4 { get; set; } // 0x20
|
||||||
|
}
|
12
RPG.GameCore/Extensions/ServiceCollectionExtensions.cs
Normal file
12
RPG.GameCore/Extensions/ServiceCollectionExtensions.cs
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
using Microsoft.Extensions.DependencyInjection;
|
||||||
|
using RPG.GameCore.Resources;
|
||||||
|
|
||||||
|
namespace RPG.GameCore.Extensions;
|
||||||
|
|
||||||
|
public static class ServiceCollectionExtensions
|
||||||
|
{
|
||||||
|
public static IServiceCollection UseLocalResources(this IServiceCollection services)
|
||||||
|
{
|
||||||
|
return services.AddSingleton<IResourceProvider, LocalResourceProvider>();
|
||||||
|
}
|
||||||
|
}
|
8
RPG.GameCore/Level/AI/AIConfigInfo.cs
Normal file
8
RPG.GameCore/Level/AI/AIConfigInfo.cs
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
namespace RPG.GameCore.Level.AI;
|
||||||
|
|
||||||
|
public class AIConfigInfo
|
||||||
|
{
|
||||||
|
public string AIFile { get; set; } = string.Empty; // 0x10
|
||||||
|
public AIPathwayInfo[] PathwayList { get; set; } = []; // 0x18
|
||||||
|
public uint DefaultAIPathwayIndex { get; set; } // 0x20
|
||||||
|
}
|
12
RPG.GameCore/Level/AI/AIPathwayInfo.cs
Normal file
12
RPG.GameCore/Level/AI/AIPathwayInfo.cs
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
using System.Text.Json.Serialization;
|
||||||
|
|
||||||
|
namespace RPG.GameCore.Level.AI;
|
||||||
|
|
||||||
|
public class AIPathwayInfo
|
||||||
|
{
|
||||||
|
public uint UseGroup { get; set; } // 0x10
|
||||||
|
public uint UseID { get; set; } // 0x14
|
||||||
|
[JsonConverter(typeof(JsonStringEnumConverter))]
|
||||||
|
public AIPathwayType Type { get; set; } // 0x18
|
||||||
|
public uint StartAt { get; set; } // 0x1C
|
||||||
|
}
|
7
RPG.GameCore/Level/AI/AIPathwayType.cs
Normal file
7
RPG.GameCore/Level/AI/AIPathwayType.cs
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
namespace RPG.GameCore.Level.AI;
|
||||||
|
|
||||||
|
public enum AIPathwayType
|
||||||
|
{
|
||||||
|
Loop,
|
||||||
|
Reverse
|
||||||
|
}
|
8
RPG.GameCore/Level/Anim/LevelAnimatingObjectState.cs
Normal file
8
RPG.GameCore/Level/Anim/LevelAnimatingObjectState.cs
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
namespace RPG.GameCore.Level.Anim;
|
||||||
|
|
||||||
|
public enum LevelAnimatingObjectState
|
||||||
|
{
|
||||||
|
None,
|
||||||
|
SpecialIdle1,
|
||||||
|
SpecialIdle2
|
||||||
|
}
|
7
RPG.GameCore/Level/Battle/BattleAreaReferenceInfo.cs
Normal file
7
RPG.GameCore/Level/Battle/BattleAreaReferenceInfo.cs
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
namespace RPG.GameCore.Level.Battle;
|
||||||
|
|
||||||
|
public class BattleAreaReferenceInfo
|
||||||
|
{
|
||||||
|
public uint GroupID { get; set; }
|
||||||
|
public uint ID { get; set; }
|
||||||
|
}
|
8
RPG.GameCore/Level/Floor/LevelCameraType.cs
Normal file
8
RPG.GameCore/Level/Floor/LevelCameraType.cs
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
namespace RPG.GameCore.Level.Floor;
|
||||||
|
|
||||||
|
public enum LevelCameraType // NIDMCIHPJEL
|
||||||
|
{
|
||||||
|
Base,
|
||||||
|
Maze,
|
||||||
|
Room
|
||||||
|
}
|
25
RPG.GameCore/Level/Floor/LevelFloorInfo.cs
Normal file
25
RPG.GameCore/Level/Floor/LevelFloorInfo.cs
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
using RPG.GameCore.Level.Group;
|
||||||
|
using System.Text.Json.Serialization;
|
||||||
|
|
||||||
|
namespace RPG.GameCore.Level.Floor;
|
||||||
|
|
||||||
|
public class LevelFloorInfo
|
||||||
|
{
|
||||||
|
public uint FloorID { get; set; } // 0x10
|
||||||
|
public required string FloorName { get; set; } // 0x18
|
||||||
|
public required string SceneName { get; set; } // 0x20
|
||||||
|
public uint StartGroupID { get; set; } // 0x28
|
||||||
|
public uint StartAnchorID { get; set; } // 0x2C
|
||||||
|
public string LevelGraph { get; set; } = string.Empty; // 0x30
|
||||||
|
public LevelGroupInstanceInfo[] GroupList { get; set; } = []; // 0x38
|
||||||
|
public uint[] DefaultGroupIDList { get; set; } = []; // 0x40
|
||||||
|
public uint[] UnlockMainMissionGroupIDList { get; set; } = []; // 0x48
|
||||||
|
public string EnviroProfile { get; set; } = string.Empty; // 0x50
|
||||||
|
public string StageData { get; set; } = string.Empty; // 0x58
|
||||||
|
public string NavMesh { get; set; } = string.Empty; // 0x60
|
||||||
|
public string MinimapVolume { get; set; } = string.Empty; // 0x68
|
||||||
|
[JsonConverter(typeof(JsonStringEnumConverter))]
|
||||||
|
public LevelCameraType CameraType { get; set; } // 0x70
|
||||||
|
|
||||||
|
public LevelGroupInstanceInfo StartGroup => GroupList.First(s => s.ID == StartGroupID);
|
||||||
|
}
|
9
RPG.GameCore/Level/Graph/LevelGraphValueSource.cs
Normal file
9
RPG.GameCore/Level/Graph/LevelGraphValueSource.cs
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
using RPG.GameCore.Types;
|
||||||
|
|
||||||
|
namespace RPG.GameCore.Level.Graph;
|
||||||
|
|
||||||
|
public class LevelGraphValueSource
|
||||||
|
{
|
||||||
|
public SharedValue[] Values { get; set; } = [];
|
||||||
|
public SharedValue[] SharedValues { get; set; } = [];
|
||||||
|
}
|
30
RPG.GameCore/Level/Group/LevelGroupInfo.cs
Normal file
30
RPG.GameCore/Level/Group/LevelGroupInfo.cs
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
using RPG.GameCore.Level.Objects;
|
||||||
|
using RPG.GameCore.Level.Save;
|
||||||
|
using System.Text.Json.Serialization;
|
||||||
|
|
||||||
|
namespace RPG.GameCore.Level.Group;
|
||||||
|
|
||||||
|
public class LevelGroupInfo
|
||||||
|
{
|
||||||
|
public string GroupGUID { get; set; } = string.Empty; // 0x10
|
||||||
|
public string GroupName { get; set; } = string.Empty; // 0x18
|
||||||
|
public string ConfigPrefabPath { get; set; } = string.Empty; // 0x20
|
||||||
|
public string LevelGraph { get; set; } = string.Empty; // 0x28
|
||||||
|
public string Model { get; set; } = string.Empty; // 0x30
|
||||||
|
public string AreaAnchorName { get; set; } = string.Empty; // 0x38
|
||||||
|
[JsonConverter(typeof(JsonStringEnumConverter))]
|
||||||
|
public LevelSaveType SaveType { get; set; } // 0x40
|
||||||
|
public uint CheckClearMainMissionID { get; set; } // 0x44
|
||||||
|
public uint UnlockMainMissionID { get; set; } // 0x48
|
||||||
|
public LevelAnchorInfo[] AnchorList { get; set; } = []; // 0x50
|
||||||
|
// TODO: public LevelModelInfo[] ModelList { get; set; } // 0x58
|
||||||
|
public LevelMonsterInfo[] MonsterList { get; set; } = []; // 0x60
|
||||||
|
// TODO: public LevelPropInfo[] PropList { get; set; } // 0x68
|
||||||
|
// TODO: public LevelWaypointInfo[] WaypointList { get; set; } // 0x70
|
||||||
|
// TODO: public LevelPathwayInfo[] PathwayList { get; set; } // 0x78
|
||||||
|
// TODO: public LevelBattleAreaInfo[] BattleAreaList { get; set; } // 0x80
|
||||||
|
// TODO: public LevelNPCInfo[] NPCList { get; set; } // 0x88
|
||||||
|
public uint GroupRefreshID { get; set; } // 0x90
|
||||||
|
// TODO: public RandomNPCMonsterInfo[] RandomNPCMonsterList { get; set; } // 0x98
|
||||||
|
public uint[] InitialRandomNPCMonsterIDList { get; set; } = []; // 0xA0
|
||||||
|
}
|
9
RPG.GameCore/Level/Group/LevelGroupInstanceInfo.cs
Normal file
9
RPG.GameCore/Level/Group/LevelGroupInstanceInfo.cs
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
using RPG.GameCore.Level.Objects;
|
||||||
|
|
||||||
|
namespace RPG.GameCore.Level.Group;
|
||||||
|
|
||||||
|
public class LevelGroupInstanceInfo : NamedLevelObjectInfo
|
||||||
|
{
|
||||||
|
public required string GroupGUID { get; set; } // 0x40
|
||||||
|
public required string GroupPath { get; set; } // 0x48
|
||||||
|
}
|
88
RPG.GameCore/Level/LevelTables.cs
Normal file
88
RPG.GameCore/Level/LevelTables.cs
Normal file
|
@ -0,0 +1,88 @@
|
||||||
|
using Microsoft.Extensions.Logging;
|
||||||
|
using RPG.GameCore.Level.Floor;
|
||||||
|
using RPG.GameCore.Level.Group;
|
||||||
|
using RPG.GameCore.Resources;
|
||||||
|
using System.Collections.Immutable;
|
||||||
|
using System.Text.Json;
|
||||||
|
|
||||||
|
namespace RPG.GameCore.Level;
|
||||||
|
|
||||||
|
public class LevelTables
|
||||||
|
{
|
||||||
|
private readonly IResourceProvider _resourceProvider;
|
||||||
|
private readonly ILogger _logger;
|
||||||
|
|
||||||
|
private ImmutableDictionary<uint, LevelFloorInfo>? _floors;
|
||||||
|
private ImmutableDictionary<string, LevelGroupInfo>? _groups;
|
||||||
|
|
||||||
|
public LevelTables(IResourceProvider resourceProvider, ILogger<LevelTables> logger)
|
||||||
|
{
|
||||||
|
_resourceProvider = resourceProvider;
|
||||||
|
_logger = logger;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Load()
|
||||||
|
{
|
||||||
|
_floors = LoadFloors();
|
||||||
|
_groups = LoadGroups();
|
||||||
|
|
||||||
|
_logger.LogInformation("Loaded {floorCount} floors and {groupCount} groups!", _floors.Count, _groups.Count);
|
||||||
|
}
|
||||||
|
|
||||||
|
public LevelFloorInfo GetFloorInfo(uint id) =>
|
||||||
|
_floors != null ? _floors[id] : throw new InvalidOperationException("GetFloorInfo called when tables aren't loaded!");
|
||||||
|
|
||||||
|
public LevelGroupInfo? GetGroupInfo(string guid)
|
||||||
|
{
|
||||||
|
if (_groups == null) throw new InvalidOperationException("GetGroupInfo called when tables aren't loaded!");
|
||||||
|
|
||||||
|
_ = _groups.TryGetValue(guid, out LevelGroupInfo? group);
|
||||||
|
return group;
|
||||||
|
}
|
||||||
|
|
||||||
|
private ImmutableDictionary<uint, LevelFloorInfo> LoadFloors()
|
||||||
|
{
|
||||||
|
IEnumerable<string> floorAssets = _resourceProvider.EnumerateAllLevelFloorAssets();
|
||||||
|
|
||||||
|
var builder = ImmutableDictionary.CreateBuilder<uint, LevelFloorInfo>();
|
||||||
|
foreach (string jsonFileName in floorAssets)
|
||||||
|
{
|
||||||
|
JsonDocument json = _resourceProvider.GetJsonAsset(jsonFileName);
|
||||||
|
LevelFloorInfo? floorInfo = JsonSerializer.Deserialize<LevelFloorInfo>(json);
|
||||||
|
|
||||||
|
if (floorInfo == null)
|
||||||
|
{
|
||||||
|
_logger.LogWarning("Failed to parse level floor: {path}", jsonFileName);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
builder.Add(floorInfo.FloorID, floorInfo);
|
||||||
|
}
|
||||||
|
|
||||||
|
return builder.ToImmutable();
|
||||||
|
}
|
||||||
|
|
||||||
|
private ImmutableDictionary<string, LevelGroupInfo> LoadGroups()
|
||||||
|
{
|
||||||
|
var builder = ImmutableDictionary.CreateBuilder<string, LevelGroupInfo>();
|
||||||
|
|
||||||
|
foreach (LevelFloorInfo floor in _floors!.Values)
|
||||||
|
{
|
||||||
|
foreach (LevelGroupInstanceInfo groupInstanceInfo in floor.GroupList)
|
||||||
|
{
|
||||||
|
JsonDocument json = _resourceProvider.GetJsonAsset(groupInstanceInfo.GroupPath);
|
||||||
|
LevelGroupInfo? groupInfo = JsonSerializer.Deserialize<LevelGroupInfo>(json);
|
||||||
|
|
||||||
|
if (groupInfo == null)
|
||||||
|
{
|
||||||
|
_logger.LogError("Failed to parse level group: {path}", groupInstanceInfo.GroupPath);
|
||||||
|
throw new InvalidDataException();
|
||||||
|
}
|
||||||
|
|
||||||
|
builder.Add(groupInfo.GroupGUID, groupInfo);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return builder.ToImmutable();
|
||||||
|
}
|
||||||
|
}
|
15
RPG.GameCore/Level/MVector3.cs
Normal file
15
RPG.GameCore/Level/MVector3.cs
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
using System.Text.Json.Serialization;
|
||||||
|
|
||||||
|
namespace RPG.GameCore.Level;
|
||||||
|
|
||||||
|
public class MVector3
|
||||||
|
{
|
||||||
|
[JsonPropertyName("x")]
|
||||||
|
public float X { get; set; }
|
||||||
|
|
||||||
|
[JsonPropertyName("y")]
|
||||||
|
public float Y { get; set; }
|
||||||
|
|
||||||
|
[JsonPropertyName("z")]
|
||||||
|
public float Z { get; set; }
|
||||||
|
}
|
6
RPG.GameCore/Level/Objects/LevelAnchorInfo.cs
Normal file
6
RPG.GameCore/Level/Objects/LevelAnchorInfo.cs
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
namespace RPG.GameCore.Level.Objects;
|
||||||
|
|
||||||
|
public class LevelAnchorInfo : NamedLevelObjectInfo
|
||||||
|
{
|
||||||
|
// LevelAnchorInfo.
|
||||||
|
}
|
24
RPG.GameCore/Level/Objects/LevelMonsterInfo.cs
Normal file
24
RPG.GameCore/Level/Objects/LevelMonsterInfo.cs
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
using RPG.GameCore.Level.AI;
|
||||||
|
using RPG.GameCore.Level.Anim;
|
||||||
|
using RPG.GameCore.Level.Battle;
|
||||||
|
using RPG.GameCore.Level.Graph;
|
||||||
|
using RPG.GameCore.Level.Trigger;
|
||||||
|
using System.Text.Json.Serialization;
|
||||||
|
|
||||||
|
namespace RPG.GameCore.Level.Objects;
|
||||||
|
|
||||||
|
public class LevelMonsterInfo : NamedLevelObjectInfo
|
||||||
|
{
|
||||||
|
public uint NPCMonsterID { get; set; } // 0x40
|
||||||
|
public string LevelGraph { get; set; } = string.Empty; // 0x48
|
||||||
|
public AIConfigInfo? AIConfig { get; set; } // 0x50
|
||||||
|
public bool CreateOnInitial { get; set; } // 0x58
|
||||||
|
public LevelGraphValueSource? ValueSource { get; set; } // 0x60
|
||||||
|
public uint CampID { get; set; } // 0x68
|
||||||
|
public BattleAreaReferenceInfo? BattleArea { get; set; } // 0x70
|
||||||
|
public LevelTriggerInfo? Trigger { get; set; } // 0x78
|
||||||
|
[JsonConverter(typeof(JsonStringEnumConverter))]
|
||||||
|
public LevelAnimatingObjectState InitialAnimState { get; set; } // 0x80
|
||||||
|
public uint RecordID { get; set; } // 0x84
|
||||||
|
public uint EventID { get; set; } // 0x88
|
||||||
|
}
|
10
RPG.GameCore/Level/Objects/LevelObjectInfo.cs
Normal file
10
RPG.GameCore/Level/Objects/LevelObjectInfo.cs
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
namespace RPG.GameCore.Level.Objects;
|
||||||
|
|
||||||
|
public class LevelObjectInfo
|
||||||
|
{
|
||||||
|
public uint ID { get; set; } // 0x10
|
||||||
|
public float PosX { get; set; } // 0x14
|
||||||
|
public float PosY { get; set; } // 0x18
|
||||||
|
public float PosZ { get; set; } // 0x1C
|
||||||
|
public bool IsDelete { get; set; } // 0x20
|
||||||
|
}
|
8
RPG.GameCore/Level/Objects/NamedLevelObjectInfo.cs
Normal file
8
RPG.GameCore/Level/Objects/NamedLevelObjectInfo.cs
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
namespace RPG.GameCore.Level.Objects;
|
||||||
|
|
||||||
|
public class NamedLevelObjectInfo : LevelObjectInfo
|
||||||
|
{
|
||||||
|
public string Name { get; set; } = string.Empty; // 0x28
|
||||||
|
public float RotY { get; set; } // 0x30
|
||||||
|
public string Comment { get; set; } = string.Empty; // 0x38
|
||||||
|
}
|
8
RPG.GameCore/Level/Save/LevelSaveType.cs
Normal file
8
RPG.GameCore/Level/Save/LevelSaveType.cs
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
namespace RPG.GameCore.Level.Save;
|
||||||
|
|
||||||
|
public enum LevelSaveType // MKEHACCAIMP
|
||||||
|
{
|
||||||
|
Temporary,
|
||||||
|
Permanent,
|
||||||
|
Reset
|
||||||
|
}
|
18
RPG.GameCore/Level/Trigger/LevelTriggerInfo.cs
Normal file
18
RPG.GameCore/Level/Trigger/LevelTriggerInfo.cs
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
using System.Text.Json.Serialization;
|
||||||
|
|
||||||
|
namespace RPG.GameCore.Level.Trigger;
|
||||||
|
|
||||||
|
public class LevelTriggerInfo
|
||||||
|
{
|
||||||
|
[JsonConverter(typeof(JsonStringEnumConverter))]
|
||||||
|
public TriggerShape Shape { get; set; } // 0x10
|
||||||
|
public float Radius { get; set; } // 0x14
|
||||||
|
public float DimX { get; set; } // 0x18
|
||||||
|
public float DimY { get; set; } // 0x1C
|
||||||
|
public float DimZ { get; set; } // 0x20
|
||||||
|
public uint[] TargetCamps { get; set; } = []; // 0x28
|
||||||
|
public int TriggerTimes { get; set; } // 0x30
|
||||||
|
public float CD { get; set; } // 0x34
|
||||||
|
public MVector3? Offset { get; set; } // 0x38
|
||||||
|
public bool Server { get; set; } // 0x44
|
||||||
|
}
|
7
RPG.GameCore/Level/Trigger/TriggerShape.cs
Normal file
7
RPG.GameCore/Level/Trigger/TriggerShape.cs
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
namespace RPG.GameCore.Level.Trigger;
|
||||||
|
|
||||||
|
public enum TriggerShape // GOMGKEJFAKF
|
||||||
|
{
|
||||||
|
Sphere,
|
||||||
|
Box
|
||||||
|
}
|
|
@ -15,15 +15,21 @@
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<None Update="data\excel\AvatarExcelTable.json">
|
<Content Include="data\Config\LevelOutput\Floor\*.json">
|
||||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
</None>
|
</Content>
|
||||||
<None Update="data\excel\MainMissionExcelTable.json">
|
<Content Include="data\Config\LevelOutput\Group\**\*.json">
|
||||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
</None>
|
</Content>
|
||||||
<None Update="data\excel\MapEntryExcelTable.json">
|
<Content Include="data\Config\ExcelBinOutput\*.json">
|
||||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
</None>
|
</Content>
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<None Remove="data\Config\ExcelBinOutput\MonsterExcelTable.json" />
|
||||||
|
<None Remove="data\Config\ExcelBinOutput\MonsterTemplateExcelTable.json" />
|
||||||
|
<None Remove="data\Config\ExcelBinOutput\StageExcelTable.json" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|
10
RPG.GameCore/Resources/IResourceProvider.cs
Normal file
10
RPG.GameCore/Resources/IResourceProvider.cs
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
using System.Text.Json;
|
||||||
|
|
||||||
|
namespace RPG.GameCore.Resources;
|
||||||
|
|
||||||
|
public interface IResourceProvider
|
||||||
|
{
|
||||||
|
IEnumerable<string> EnumerateAllLevelFloorAssets();
|
||||||
|
JsonDocument GetExcelTableJson(string file);
|
||||||
|
JsonDocument GetJsonAsset(string file);
|
||||||
|
}
|
28
RPG.GameCore/Resources/LocalResourceProvider.cs
Normal file
28
RPG.GameCore/Resources/LocalResourceProvider.cs
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
using System.Text.Json;
|
||||||
|
|
||||||
|
namespace RPG.GameCore.Resources;
|
||||||
|
|
||||||
|
internal class LocalResourceProvider : IResourceProvider
|
||||||
|
{
|
||||||
|
private const string DataPath = "data/";
|
||||||
|
private const string LevelFloorSubdirectory = "Config/LevelOutput/Floor/";
|
||||||
|
private const string ExcelSubdirectory = "Config/ExcelBinOutput/";
|
||||||
|
|
||||||
|
public IEnumerable<string> EnumerateAllLevelFloorAssets()
|
||||||
|
{
|
||||||
|
return Directory.EnumerateFiles(DataPath + LevelFloorSubdirectory);
|
||||||
|
}
|
||||||
|
|
||||||
|
public JsonDocument GetExcelTableJson(string file)
|
||||||
|
{
|
||||||
|
return GetJsonAsset(string.Concat(DataPath, ExcelSubdirectory, file));
|
||||||
|
}
|
||||||
|
|
||||||
|
public JsonDocument GetJsonAsset(string file)
|
||||||
|
{
|
||||||
|
if (!file.StartsWith(DataPath)) file = string.Concat(DataPath, file);
|
||||||
|
|
||||||
|
using FileStream fileStream = new(file, FileMode.Open, FileAccess.Read);
|
||||||
|
return JsonDocument.Parse(fileStream);
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,8 +1,10 @@
|
||||||
using RPG.GameCore.Enums;
|
using RPG.GameCore.Enums;
|
||||||
|
using System.Text.Json.Serialization;
|
||||||
|
|
||||||
namespace RPG.GameCore.Types;
|
namespace RPG.GameCore.Types;
|
||||||
public class GCINNHHNFMP
|
public class GCINNHHNFMP
|
||||||
{
|
{
|
||||||
|
[JsonConverter(typeof(JsonStringEnumConverter))]
|
||||||
public AttackDamageType LDIGCDHLBGE { get; set; } // 0x10
|
public AttackDamageType LDIGCDHLBGE { get; set; } // 0x10
|
||||||
public FixPoint BNHLMJGNADI { get; set; } // 0x18
|
public FixPoint BNHLMJGNADI { get; set; } // 0x18
|
||||||
}
|
}
|
||||||
|
|
6
RPG.GameCore/Types/SharedValue.cs
Normal file
6
RPG.GameCore/Types/SharedValue.cs
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
namespace RPG.GameCore.Types;
|
||||||
|
|
||||||
|
public class SharedValue
|
||||||
|
{
|
||||||
|
public string Key { get; set; } = string.Empty;
|
||||||
|
}
|
11
RPG.GameCore/Util/MathUtil.cs
Normal file
11
RPG.GameCore/Util/MathUtil.cs
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
namespace RPG.GameCore.Util;
|
||||||
|
|
||||||
|
public static class MathUtil
|
||||||
|
{
|
||||||
|
private const float LogicCoordMulValue = 1000f;
|
||||||
|
|
||||||
|
public static int GetLogicCoordValue(float v)
|
||||||
|
{
|
||||||
|
return (int)(v * LogicCoordMulValue);
|
||||||
|
}
|
||||||
|
}
|
8513
RPG.GameCore/data/Config/ExcelBinOutput/MonsterExcelTable.json
Normal file
8513
RPG.GameCore/data/Config/ExcelBinOutput/MonsterExcelTable.json
Normal file
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
38750
RPG.GameCore/data/Config/ExcelBinOutput/StageExcelTable.json
Normal file
38750
RPG.GameCore/data/Config/ExcelBinOutput/StageExcelTable.json
Normal file
File diff suppressed because it is too large
Load diff
260
RPG.GameCore/data/Config/LevelOutput/Floor/P10000_F10000000.json
Normal file
260
RPG.GameCore/data/Config/LevelOutput/Floor/P10000_F10000000.json
Normal file
|
@ -0,0 +1,260 @@
|
||||||
|
{
|
||||||
|
"FloorID": 10000000,
|
||||||
|
"FloorName": "FloorName_10000000",
|
||||||
|
"SceneName": null,
|
||||||
|
"StartGroupID": 2,
|
||||||
|
"StartAnchorID": 1,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"GroupList": [
|
||||||
|
{
|
||||||
|
"GroupGUID": "2073c537-9c81-45aa-a916-e6ebd214eee4",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10000_F10000000/LevelGroup_P10000_F10000000_G2.json",
|
||||||
|
"Name": "Default",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 2,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "3b09c033-1915-4dd5-9f8f-34ffd7a84d0a",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10000_F10000000/LevelGroup_P10000_F10000000_G7.json",
|
||||||
|
"Name": "Exit",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "列车出口",
|
||||||
|
"ID": 7,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "66189ad6-0296-429a-9e87-96b45e7e4466",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10000_F10000000/LevelGroup_P10000_F10000000_G3.json",
|
||||||
|
"Name": "NPC_Pam",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 3,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "4331f17b-cb3e-4911-9276-fb7ca7e6070a",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10000_F10000000/LevelGroup_P10000_F10000000_G4.json",
|
||||||
|
"Name": "1000001",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 4,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "18764f7d-2db5-47c8-aa96-25659cdfef60",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10000_F10000000/LevelGroup_P10000_F10000000_G5.json",
|
||||||
|
"Name": "1000002",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 5,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "19875873-8703-4bc1-9671-479ef7f6b9f2",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10000_F10000000/LevelGroup_P10000_F10000000_G6.json",
|
||||||
|
"Name": "1000003",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 6,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "5e9e3d78-1108-40ac-9455-dcee052b99c4",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10000_F10000000/LevelGroup_P10000_F10000000_G8.json",
|
||||||
|
"Name": "MainMission_10000",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 8,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "dc98da5f-5bdd-45b8-a106-6fd202782477",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10000_F10000000/LevelGroup_P10000_F10000000_G9.json",
|
||||||
|
"Name": "Tutorial10000000",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 9,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "00a687db-2493-4dd9-88e6-a33475df5599",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10000_F10000000/LevelGroup_P10000_F10000000_G10.json",
|
||||||
|
"Name": "SubMission",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "他人的宝藏",
|
||||||
|
"ID": 10,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"DefaultGroupIDList": [
|
||||||
|
2,
|
||||||
|
7,
|
||||||
|
3,
|
||||||
|
9,
|
||||||
|
10
|
||||||
|
],
|
||||||
|
"UnlockMainMissionGroupIDList": [],
|
||||||
|
"EnviroProfile": "Stages/Outputs/Chapter00/EnviroProfile/Chap00_INT_Train_01.enviroProfile.asset.enviroProfile.asset",
|
||||||
|
"StageData": "Stages/Outputs/Chapter00/Stages/Chap00_INT_Train_01_StageData/Chap00_INT_Train_01_StageData.stage",
|
||||||
|
"NavMesh": "Level/NavMesh/NavMesh-Floor_10000000.asset",
|
||||||
|
"MinimapVolume": "Level/MinimapVolume/MinimapVolume-Floor_10000000.prefab",
|
||||||
|
"CameraType": "Maze",
|
||||||
|
"MinimapVolumeData": {
|
||||||
|
"BackgroundMapSpriteInstance": null,
|
||||||
|
"Center": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 5.474826,
|
||||||
|
"z": 2.285852,
|
||||||
|
"normalized": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.922796965,
|
||||||
|
"z": 0.385286629,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.0
|
||||||
|
},
|
||||||
|
"magnitude": 5.932861,
|
||||||
|
"sqrMagnitude": 35.1988373
|
||||||
|
},
|
||||||
|
"Size": {
|
||||||
|
"x": 16.7837,
|
||||||
|
"y": 11.16731,
|
||||||
|
"z": 50.92945,
|
||||||
|
"normalized": {
|
||||||
|
"x": 0.3064163,
|
||||||
|
"y": 0.203879088,
|
||||||
|
"z": 0.929807663,
|
||||||
|
"normalized": {
|
||||||
|
"x": 0.306416333,
|
||||||
|
"y": 0.2038791,
|
||||||
|
"z": 0.9298077,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.00000012
|
||||||
|
},
|
||||||
|
"magnitude": 0.99999994,
|
||||||
|
"sqrMagnitude": 0.99999994
|
||||||
|
},
|
||||||
|
"magnitude": 54.7741776,
|
||||||
|
"sqrMagnitude": 3000.21045
|
||||||
|
},
|
||||||
|
"Scale": 7.0,
|
||||||
|
"CompleteScale": 12.0,
|
||||||
|
"SectionVertices": [
|
||||||
|
{
|
||||||
|
"x": -8.39185,
|
||||||
|
"y": 25.46473,
|
||||||
|
"normalized": {
|
||||||
|
"x": -0.3129903,
|
||||||
|
"y": 0.9497563,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.0
|
||||||
|
},
|
||||||
|
"magnitude": 26.8118553,
|
||||||
|
"sqrMagnitude": 718.8756
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 8.39185,
|
||||||
|
"y": 25.46473,
|
||||||
|
"normalized": {
|
||||||
|
"x": 0.3129903,
|
||||||
|
"y": 0.9497563,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.0
|
||||||
|
},
|
||||||
|
"magnitude": 26.8118553,
|
||||||
|
"sqrMagnitude": 718.8756
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 8.39185,
|
||||||
|
"y": -25.46473,
|
||||||
|
"normalized": {
|
||||||
|
"x": 0.3129903,
|
||||||
|
"y": -0.9497563,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.0
|
||||||
|
},
|
||||||
|
"magnitude": 26.8118553,
|
||||||
|
"sqrMagnitude": 718.8756
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": -8.39185,
|
||||||
|
"y": -25.46473,
|
||||||
|
"normalized": {
|
||||||
|
"x": -0.3129903,
|
||||||
|
"y": -0.9497563,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.0
|
||||||
|
},
|
||||||
|
"magnitude": 26.8118553,
|
||||||
|
"sqrMagnitude": 718.8756
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"Atlas": "SpriteOutput/MapPics/Minimap/Minimap_10000000/SectionAtlas/MinimapSection_10000000_Atlas.spriteatlas",
|
||||||
|
"Sections": [
|
||||||
|
{
|
||||||
|
"ID": 0,
|
||||||
|
"Sprite": "SpriteOutput/MapPics/Minimap/Minimap_10000000/SectionAtlas/MinimapSection_10000000_0.png",
|
||||||
|
"IsRect": true,
|
||||||
|
"Indices": [
|
||||||
|
0,
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
3
|
||||||
|
],
|
||||||
|
"UIPosition": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"InitialHidden": false,
|
||||||
|
"Type": "Normal",
|
||||||
|
"Center": {
|
||||||
|
"x": -8.39185,
|
||||||
|
"y": 25.46473,
|
||||||
|
"normalized": {
|
||||||
|
"x": -0.3129903,
|
||||||
|
"y": 0.9497563,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.0
|
||||||
|
},
|
||||||
|
"magnitude": 26.8118553,
|
||||||
|
"sqrMagnitude": 718.8756
|
||||||
|
},
|
||||||
|
"GroupID": 0,
|
||||||
|
"PropID": 0
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"BackgroundMapSprite": "SpriteOutput/MapPics/Minimap/Minimap_10000000/Background.png",
|
||||||
|
"CombineLayerAutomatic": false,
|
||||||
|
"Rotation": 0.0
|
||||||
|
}
|
||||||
|
}
|
369
RPG.GameCore/data/Config/LevelOutput/Floor/P10101_F10101001.json
Normal file
369
RPG.GameCore/data/Config/LevelOutput/Floor/P10101_F10101001.json
Normal file
|
@ -0,0 +1,369 @@
|
||||||
|
{
|
||||||
|
"FloorID": 10101001,
|
||||||
|
"FloorName": "FloorName_10101001",
|
||||||
|
"SceneName": null,
|
||||||
|
"StartGroupID": 1,
|
||||||
|
"StartAnchorID": 1,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"GroupList": [
|
||||||
|
{
|
||||||
|
"GroupGUID": "e9ffe27e-fd37-42fc-9e1f-22818a1a5603",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10101_F10101001/LevelGroup_P10101_F10101001_G1.json",
|
||||||
|
"Name": "DefaultData",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "出生点、锚点",
|
||||||
|
"ID": 1,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "0acb9614-eaf9-4972-b956-a4cbde04c2e6",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10101_F10101001/LevelGroup_P10101_F10101001_G3.json",
|
||||||
|
"Name": "Entrance",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "传送点与挂点prefab",
|
||||||
|
"ID": 3,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "891bf02a-c9ef-4c57-b00b-cd3da09d0b2d",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10101_F10101001/LevelGroup_P10101_F10101001_G15.json",
|
||||||
|
"Name": "NPC",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "常驻NPC",
|
||||||
|
"ID": 15,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "bbc8679f-236e-4bb9-b0d6-25fa0a6d465a",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10101_F10101001/LevelGroup_P10101_F10101001_G4.json",
|
||||||
|
"Name": "Group0",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "旧临时NPC【已关闭】",
|
||||||
|
"ID": 4,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "eb17b11e-0260-4515-9023-496a5ce46895",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10101_F10101001/LevelGroup_P10101_F10101001_G5.json",
|
||||||
|
"Name": "BGM",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "区域TriggerBGM",
|
||||||
|
"ID": 5,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "70d4ca3b-e5e2-43d6-9397-caf5717ad1ff",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10101_F10101001/LevelGroup_P10101_F10101001_G13.json",
|
||||||
|
"Name": "InvestigativeProps",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "调查文本",
|
||||||
|
"ID": 13,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "5cd2d62d-1c3d-4a28-b847-51a13a8f2164",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10101_F10101001/LevelGroup_P10101_F10101001_G14.json",
|
||||||
|
"Name": "Books",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "书籍",
|
||||||
|
"ID": 14,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.5,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "1e155f69-3993-4415-9d5a-02f55e868e43",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10101_F10101001/LevelGroup_P10101_F10101001_G6.json",
|
||||||
|
"Name": "Mission",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 6,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "753692cd-36b0-4c67-bbf4-5f9c59daacea",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10101_F10101001/LevelGroup_P10101_F10101001_G8.json",
|
||||||
|
"Name": "Group0",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "衔接任务",
|
||||||
|
"ID": 8,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "97f03732-b275-49f4-b9ba-cb097eec5ed6",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10101_F10101001/LevelGroup_P10101_F10101001_G9.json",
|
||||||
|
"Name": "WayPoint",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 9,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "7455273d-0c2c-4aaf-9b13-af6e838a65a9",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10101_F10101001/LevelGroup_P10101_F10101001_G10.json",
|
||||||
|
"Name": "SubMission",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "支线任务",
|
||||||
|
"ID": 10,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "e218b053-6f96-45dd-af37-ac73b13324e7",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10101_F10101001/LevelGroup_P10101_F10101001_G11.json",
|
||||||
|
"Name": "Group0",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "衔接任务02",
|
||||||
|
"ID": 11,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "aaeadfa5-78a7-4c39-bfda-6b35ad8ad496",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10101_F10101001/LevelGroup_P10101_F10101001_G12.json",
|
||||||
|
"Name": "Inter_Mission",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "M3-2城镇任务",
|
||||||
|
"ID": 12,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "294870c7-0a73-4d3b-9096-91c1fc72d1c4",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10101_F10101001/LevelGroup_P10101_F10101001_G7.json",
|
||||||
|
"Name": "MainMission",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "第一次进城",
|
||||||
|
"ID": 7,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "83b078b9-562d-4c2c-8c22-72bb6048b042",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10101_F10101001/LevelGroup_P10101_F10101001_G16.json",
|
||||||
|
"Name": "New Group",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 16,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "f1e8e423-1220-4114-831d-c1ade0ae1307",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10101_F10101001/LevelGroup_P10101_F10101001_G17.json",
|
||||||
|
"Name": "NPCTest",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "气氛组测试",
|
||||||
|
"ID": 17,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "08f06f3c-341c-4ac1-b979-8ad37c283e55",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10101_F10101001/LevelGroup_P10101_F10101001_G18.json",
|
||||||
|
"Name": "SubjectMission",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "支线-钻头",
|
||||||
|
"ID": 18,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "2b4a1dab-ec84-46e8-8314-8880729d48c7",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10101_F10101001/LevelGroup_P10101_F10101001_G19.json",
|
||||||
|
"Name": "SubjectMission",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "3-1失控 支线任务201090605",
|
||||||
|
"ID": 19,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"DefaultGroupIDList": [
|
||||||
|
1,
|
||||||
|
3,
|
||||||
|
15,
|
||||||
|
13,
|
||||||
|
14,
|
||||||
|
17
|
||||||
|
],
|
||||||
|
"UnlockMainMissionGroupIDList": [],
|
||||||
|
"EnviroProfile": "Stages/Outputs/Chapter01/EnviroProfile/Chap01_CloseView_ADV_Area_Square_01_Day.enviroProfile.asset",
|
||||||
|
"StageData": "Stages/Outputs/Chapter01/Stages/Chap01_ADV_Area_Square_01_StageData/Chap01_ADV_Area_Square_01_StageData.stage",
|
||||||
|
"NavMesh": "Level/NavMesh/NavMesh-Floor_10101001.asset",
|
||||||
|
"MinimapVolume": null,
|
||||||
|
"CameraType": "Base",
|
||||||
|
"MinimapVolumeData": {
|
||||||
|
"BackgroundMapSpriteInstance": null,
|
||||||
|
"Center": {
|
||||||
|
"x": -26.0,
|
||||||
|
"y": 138.0135,
|
||||||
|
"z": -41.12415,
|
||||||
|
"normalized": {
|
||||||
|
"x": -0.1776704,
|
||||||
|
"y": 0.943112135,
|
||||||
|
"z": -0.281020939,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.00000012
|
||||||
|
},
|
||||||
|
"magnitude": 146.338379,
|
||||||
|
"sqrMagnitude": 21414.9219
|
||||||
|
},
|
||||||
|
"Size": {
|
||||||
|
"x": 272.2,
|
||||||
|
"y": 623.6628,
|
||||||
|
"z": 392.5,
|
||||||
|
"normalized": {
|
||||||
|
"x": 0.34650445,
|
||||||
|
"y": 0.7939086,
|
||||||
|
"z": 0.4996436,
|
||||||
|
"normalized": {
|
||||||
|
"x": 0.34650448,
|
||||||
|
"y": 0.793908656,
|
||||||
|
"z": 0.499643624,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.0
|
||||||
|
},
|
||||||
|
"magnitude": 0.99999994,
|
||||||
|
"sqrMagnitude": 0.99999994
|
||||||
|
},
|
||||||
|
"magnitude": 785.559937,
|
||||||
|
"sqrMagnitude": 617104.4
|
||||||
|
},
|
||||||
|
"Scale": 3.0,
|
||||||
|
"CompleteScale": 3.0,
|
||||||
|
"SectionVertices": [
|
||||||
|
{
|
||||||
|
"x": -136.1,
|
||||||
|
"y": 196.25,
|
||||||
|
"normalized": {
|
||||||
|
"x": -0.5698739,
|
||||||
|
"y": 0.821732163,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.0
|
||||||
|
},
|
||||||
|
"magnitude": 238.824768,
|
||||||
|
"sqrMagnitude": 57037.2734
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 136.1,
|
||||||
|
"y": 196.25,
|
||||||
|
"normalized": {
|
||||||
|
"x": 0.5698739,
|
||||||
|
"y": 0.821732163,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.0
|
||||||
|
},
|
||||||
|
"magnitude": 238.824768,
|
||||||
|
"sqrMagnitude": 57037.2734
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 136.1,
|
||||||
|
"y": -196.25,
|
||||||
|
"normalized": {
|
||||||
|
"x": 0.5698739,
|
||||||
|
"y": -0.821732163,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.0
|
||||||
|
},
|
||||||
|
"magnitude": 238.824768,
|
||||||
|
"sqrMagnitude": 57037.2734
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": -136.1,
|
||||||
|
"y": -196.25,
|
||||||
|
"normalized": {
|
||||||
|
"x": -0.5698739,
|
||||||
|
"y": -0.821732163,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.0
|
||||||
|
},
|
||||||
|
"magnitude": 238.824768,
|
||||||
|
"sqrMagnitude": 57037.2734
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"Atlas": "SpriteOutput/MapPics/Minimap/Minimap_10101001/SectionAtlas/MinimapSection_10101001_Atlas.spriteatlas",
|
||||||
|
"Sections": [
|
||||||
|
{
|
||||||
|
"ID": 0,
|
||||||
|
"Sprite": "SpriteOutput/MapPics/Minimap/Minimap_10101001/SectionAtlas/MinimapSection_10101001_0.png",
|
||||||
|
"IsRect": true,
|
||||||
|
"Indices": [
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
3,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"UIPosition": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"InitialHidden": false,
|
||||||
|
"Type": "Normal",
|
||||||
|
"Center": {
|
||||||
|
"x": -136.1,
|
||||||
|
"y": 196.25,
|
||||||
|
"normalized": {
|
||||||
|
"x": -0.5698739,
|
||||||
|
"y": 0.821732163,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.0
|
||||||
|
},
|
||||||
|
"magnitude": 238.824768,
|
||||||
|
"sqrMagnitude": 57037.2734
|
||||||
|
},
|
||||||
|
"GroupID": 0,
|
||||||
|
"PropID": 0
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"BackgroundMapSprite": "SpriteOutput/MapPics/Minimap/Minimap_10101001/Background.png",
|
||||||
|
"CombineLayerAutomatic": false,
|
||||||
|
"Rotation": 0.0
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,56 @@
|
||||||
|
{
|
||||||
|
"FloorID": 10101002,
|
||||||
|
"FloorName": "FloorName_10101002",
|
||||||
|
"SceneName": null,
|
||||||
|
"StartGroupID": 1,
|
||||||
|
"StartAnchorID": 1,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"GroupList": [
|
||||||
|
{
|
||||||
|
"GroupGUID": "8576e54e-1776-406c-8d06-7467adecdc78",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10101_F10101002/LevelGroup_P10101_F10101002_G1.json",
|
||||||
|
"Name": "Group0",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 1,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"DefaultGroupIDList": [
|
||||||
|
1
|
||||||
|
],
|
||||||
|
"UnlockMainMissionGroupIDList": [],
|
||||||
|
"EnviroProfile": "Stages/Outputs/Chapter01/EnviroProfile/Chap01_INT_Office_01.enviroProfile.asset",
|
||||||
|
"StageData": "Stages/Outputs/Chapter01/Stages/Chap01_INT_Office_01_StageData/Chap01_INT_Office_01_StageData.stage",
|
||||||
|
"NavMesh": "Level/NavMesh/NavMesh-Floor_10101002.asset",
|
||||||
|
"MinimapVolume": null,
|
||||||
|
"CameraType": "Room",
|
||||||
|
"MinimapVolumeData": {
|
||||||
|
"BackgroundMapSpriteInstance": null,
|
||||||
|
"Center": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Size": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Scale": 0.0,
|
||||||
|
"CompleteScale": 3.0,
|
||||||
|
"SectionVertices": null,
|
||||||
|
"Atlas": null,
|
||||||
|
"Sections": null,
|
||||||
|
"BackgroundMapSprite": null,
|
||||||
|
"CombineLayerAutomatic": false,
|
||||||
|
"Rotation": 0.0
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,69 @@
|
||||||
|
{
|
||||||
|
"FloorID": 10101003,
|
||||||
|
"FloorName": "FloorName_10101003",
|
||||||
|
"SceneName": null,
|
||||||
|
"StartGroupID": 1,
|
||||||
|
"StartAnchorID": 1,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"GroupList": [
|
||||||
|
{
|
||||||
|
"GroupGUID": "6b455829-3d07-430e-adeb-e069665ab686",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10101_F10101003/LevelGroup_P10101_F10101003_G1.json",
|
||||||
|
"Name": "Default",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 1,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "10f7bb17-9e83-4024-bfc4-4379c39366da",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10101_F10101003/LevelGroup_P10101_F10101003_G3.json",
|
||||||
|
"Name": "NPCs",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "常驻NPC",
|
||||||
|
"ID": 3,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"DefaultGroupIDList": [
|
||||||
|
1,
|
||||||
|
3
|
||||||
|
],
|
||||||
|
"UnlockMainMissionGroupIDList": [],
|
||||||
|
"EnviroProfile": "Stages/Outputs/Chapter01/EnviroProfile/Chap01_INT_FlowerShop_01.enviroProfile.asset",
|
||||||
|
"StageData": "Stages/Outputs/Chapter01/Stages/Chap01_INT_FlowerShop_01_StageData/Chap01_INT_FlowerShop_01_StageData.stage",
|
||||||
|
"NavMesh": "Level/NavMesh/NavMesh-Floor_10101003.asset",
|
||||||
|
"MinimapVolume": null,
|
||||||
|
"CameraType": "Room",
|
||||||
|
"MinimapVolumeData": {
|
||||||
|
"BackgroundMapSpriteInstance": null,
|
||||||
|
"Center": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Size": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Scale": 0.0,
|
||||||
|
"CompleteScale": 3.0,
|
||||||
|
"SectionVertices": null,
|
||||||
|
"Atlas": null,
|
||||||
|
"Sections": null,
|
||||||
|
"BackgroundMapSprite": null,
|
||||||
|
"CombineLayerAutomatic": false,
|
||||||
|
"Rotation": 0.0
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,56 @@
|
||||||
|
{
|
||||||
|
"FloorID": 10101004,
|
||||||
|
"FloorName": "FloorName_10101004",
|
||||||
|
"SceneName": null,
|
||||||
|
"StartGroupID": 1,
|
||||||
|
"StartAnchorID": 1,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"GroupList": [
|
||||||
|
{
|
||||||
|
"GroupGUID": "dd6e1102-1539-407a-8470-3905b0b53648",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10101_F10101004/LevelGroup_P10101_F10101004_G1.json",
|
||||||
|
"Name": "Group0",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 1,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"DefaultGroupIDList": [
|
||||||
|
1
|
||||||
|
],
|
||||||
|
"UnlockMainMissionGroupIDList": [],
|
||||||
|
"EnviroProfile": "Stages/Outputs/Chapter01/EnviroProfile/Chap01_CloseView_INT_Hotel_01_Corridor.enviroProfile.asset",
|
||||||
|
"StageData": "Stages/Outputs/Chapter01/Stages/Chap01_INT_Hotel_01_Corridor_StageData/Chap01_INT_Hotel_01_Corridor_StageData.stage",
|
||||||
|
"NavMesh": "Level/NavMesh/NavMesh-Floor_10101004.asset",
|
||||||
|
"MinimapVolume": null,
|
||||||
|
"CameraType": "Room",
|
||||||
|
"MinimapVolumeData": {
|
||||||
|
"BackgroundMapSpriteInstance": null,
|
||||||
|
"Center": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Size": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Scale": 0.0,
|
||||||
|
"CompleteScale": 3.0,
|
||||||
|
"SectionVertices": null,
|
||||||
|
"Atlas": null,
|
||||||
|
"Sections": null,
|
||||||
|
"BackgroundMapSprite": null,
|
||||||
|
"CombineLayerAutomatic": false,
|
||||||
|
"Rotation": 0.0
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,69 @@
|
||||||
|
{
|
||||||
|
"FloorID": 10101005,
|
||||||
|
"FloorName": "FloorName_10101005",
|
||||||
|
"SceneName": null,
|
||||||
|
"StartGroupID": 2,
|
||||||
|
"StartAnchorID": 1,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"GroupList": [
|
||||||
|
{
|
||||||
|
"GroupGUID": "11cd7cc1-5a6d-423f-8ce7-af26f1d476e4",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10101_F10101005/LevelGroup_P10101_F10101005_G2.json",
|
||||||
|
"Name": "Default",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 2,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "66e1ea12-e8cd-4055-832f-3298e748eb01",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10101_F10101005/LevelGroup_P10101_F10101005_G3.json",
|
||||||
|
"Name": "NPCs",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "常驻NPC",
|
||||||
|
"ID": 3,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"DefaultGroupIDList": [
|
||||||
|
2,
|
||||||
|
3
|
||||||
|
],
|
||||||
|
"UnlockMainMissionGroupIDList": [],
|
||||||
|
"EnviroProfile": "Stages/Outputs/Chapter01/EnviroProfile/Chap01_CloseView_INT_Hotel_01_Lobby.enviroProfile.asset",
|
||||||
|
"StageData": "Stages/Outputs/Chapter01/Stages/Chap01_INT_Hotel_01_Lobby_StageData/Chap01_INT_Hotel_01_Lobby_StageData.stage",
|
||||||
|
"NavMesh": "Level/NavMesh/NavMesh-Floor_10101005.asset",
|
||||||
|
"MinimapVolume": null,
|
||||||
|
"CameraType": "Maze",
|
||||||
|
"MinimapVolumeData": {
|
||||||
|
"BackgroundMapSpriteInstance": null,
|
||||||
|
"Center": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Size": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Scale": 0.0,
|
||||||
|
"CompleteScale": 3.0,
|
||||||
|
"SectionVertices": null,
|
||||||
|
"Atlas": null,
|
||||||
|
"Sections": null,
|
||||||
|
"BackgroundMapSprite": null,
|
||||||
|
"CombineLayerAutomatic": false,
|
||||||
|
"Rotation": 0.0
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,81 @@
|
||||||
|
{
|
||||||
|
"FloorID": 10101006,
|
||||||
|
"FloorName": "FloorName_10101006",
|
||||||
|
"SceneName": null,
|
||||||
|
"StartGroupID": 2,
|
||||||
|
"StartAnchorID": 1,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"GroupList": [
|
||||||
|
{
|
||||||
|
"GroupGUID": "82dd73c2-3594-486c-8805-40cbac18a041",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10101_F10101006/LevelGroup_P10101_F10101006_G2.json",
|
||||||
|
"Name": "DefaultGroup",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 2,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "6cc24f9c-3fc7-4c6e-99fc-892ed0c89608",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10101_F10101006/LevelGroup_P10101_F10101006_G3.json",
|
||||||
|
"Name": "Books",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 3,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "13c206fe-6b94-4cbc-b70a-3aff5ea0f908",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10101_F10101006/LevelGroup_P10101_F10101006_G4.json",
|
||||||
|
"Name": "MainMission1010811",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 4,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"DefaultGroupIDList": [
|
||||||
|
2,
|
||||||
|
3
|
||||||
|
],
|
||||||
|
"UnlockMainMissionGroupIDList": [],
|
||||||
|
"EnviroProfile": "Stages/Outputs/Chapter01/EnviroProfile/Chap01_CloseView_INT_Hotel_01_Room.enviroProfile.asset",
|
||||||
|
"StageData": "Stages/Outputs/Chapter01/Stages/Chap01_INT_Hotel_01_Room_StageData/Chap01_INT_Hotel_01_Room_StageData.stage",
|
||||||
|
"NavMesh": "Level/NavMesh/NavMesh-Floor_10101006.asset",
|
||||||
|
"MinimapVolume": null,
|
||||||
|
"CameraType": "Room",
|
||||||
|
"MinimapVolumeData": {
|
||||||
|
"BackgroundMapSpriteInstance": null,
|
||||||
|
"Center": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Size": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Scale": 0.0,
|
||||||
|
"CompleteScale": 3.0,
|
||||||
|
"SectionVertices": null,
|
||||||
|
"Atlas": null,
|
||||||
|
"Sections": null,
|
||||||
|
"BackgroundMapSprite": null,
|
||||||
|
"CombineLayerAutomatic": false,
|
||||||
|
"Rotation": 0.0
|
||||||
|
}
|
||||||
|
}
|
120
RPG.GameCore/data/Config/LevelOutput/Floor/P10101_F10101007.json
Normal file
120
RPG.GameCore/data/Config/LevelOutput/Floor/P10101_F10101007.json
Normal file
|
@ -0,0 +1,120 @@
|
||||||
|
{
|
||||||
|
"FloorID": 10101007,
|
||||||
|
"FloorName": "FloorName_10101007",
|
||||||
|
"SceneName": null,
|
||||||
|
"StartGroupID": 1,
|
||||||
|
"StartAnchorID": 1,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"GroupList": [
|
||||||
|
{
|
||||||
|
"GroupGUID": "ff568e14-ef1c-4e2b-9ebd-ef08bac4923b",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10101_F10101007/LevelGroup_P10101_F10101007_G1.json",
|
||||||
|
"Name": "Default",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 1,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "04c0273f-020a-4a1c-b812-64533026376d",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10101_F10101007/LevelGroup_P10101_F10101007_G5.json",
|
||||||
|
"Name": "NPCs",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "常驻NPC",
|
||||||
|
"ID": 5,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "b6a776dc-851d-4a15-998e-7b5b0d9db62c",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10101_F10101007/LevelGroup_P10101_F10101007_G3.json",
|
||||||
|
"Name": "Books",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 3,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "993cabbb-25b8-441e-bca3-6415370ef884",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10101_F10101007/LevelGroup_P10101_F10101007_G4.json",
|
||||||
|
"Name": "New Group",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "NPC",
|
||||||
|
"ID": 4,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "71370bef-d015-45cb-a6e1-c8cfdc067a28",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10101_F10101007/LevelGroup_P10101_F10101007_G6.json",
|
||||||
|
"Name": "SubjectMission",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "支线任务201100209 钻头",
|
||||||
|
"ID": 6,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "eb200764-d11b-4958-bab5-f27a8c94b1a8",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10101_F10101007/LevelGroup_P10101_F10101007_G7.json",
|
||||||
|
"Name": "NPC",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "常驻茉莉",
|
||||||
|
"ID": 7,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"DefaultGroupIDList": [
|
||||||
|
1,
|
||||||
|
5,
|
||||||
|
3
|
||||||
|
],
|
||||||
|
"UnlockMainMissionGroupIDList": [
|
||||||
|
7
|
||||||
|
],
|
||||||
|
"EnviroProfile": "Stages/Outputs/Chapter01/EnviroProfile/Chap01_CloseView_INT_MachineHouse_01.enviroProfile.asset",
|
||||||
|
"StageData": "Stages/Outputs/Chapter01/Stages/Chap01_INT_MachineHouse_01_StageData/Chap01_INT_MachineHouse_01_StageData.stage",
|
||||||
|
"NavMesh": "Level/NavMesh/NavMesh-Floor_10101007.asset",
|
||||||
|
"MinimapVolume": null,
|
||||||
|
"CameraType": "Room",
|
||||||
|
"MinimapVolumeData": {
|
||||||
|
"BackgroundMapSpriteInstance": null,
|
||||||
|
"Center": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Size": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Scale": 0.0,
|
||||||
|
"CompleteScale": 3.0,
|
||||||
|
"SectionVertices": null,
|
||||||
|
"Atlas": null,
|
||||||
|
"Sections": null,
|
||||||
|
"BackgroundMapSprite": null,
|
||||||
|
"CombineLayerAutomatic": false,
|
||||||
|
"Rotation": 0.0
|
||||||
|
}
|
||||||
|
}
|
507
RPG.GameCore/data/Config/LevelOutput/Floor/P10102_F10102001.json
Normal file
507
RPG.GameCore/data/Config/LevelOutput/Floor/P10102_F10102001.json
Normal file
|
@ -0,0 +1,507 @@
|
||||||
|
{
|
||||||
|
"FloorID": 10102001,
|
||||||
|
"FloorName": "FloorName_10102001",
|
||||||
|
"SceneName": null,
|
||||||
|
"StartGroupID": 2,
|
||||||
|
"StartAnchorID": 1,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"GroupList": [
|
||||||
|
{
|
||||||
|
"GroupGUID": "df6697e8-c5d2-4637-aac8-dac278591c9b",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10102_F10102001/LevelGroup_P10102_F10102001_G30.json",
|
||||||
|
"Name": "Default",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "锚点",
|
||||||
|
"ID": 30,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "2ffd12c1-9e80-4adc-9985-c7b92a1f207b",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10102_F10102001/LevelGroup_P10102_F10102001_G2.json",
|
||||||
|
"Name": "Exits",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 2,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "9ca05efd-600e-459f-8129-48e27e190a09",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10102_F10102001/LevelGroup_P10102_F10102001_G23.json",
|
||||||
|
"Name": "ChallengeMaze",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "挑战关",
|
||||||
|
"ID": 23,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "7a684621-b306-414b-89a6-1e5011dc195e",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10102_F10102001/LevelGroup_P10102_F10102001_G3.json",
|
||||||
|
"Name": "MapNPC",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "常驻NPC",
|
||||||
|
"ID": 3,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "51dec533-83f9-4065-ae4e-f4a1c1744589",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10102_F10102001/LevelGroup_P10102_F10102001_G26.json",
|
||||||
|
"Name": "MainMission",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "常驻奥列格",
|
||||||
|
"ID": 26,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "c5cec737-e7dc-4244-a094-77199731c856",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10102_F10102001/LevelGroup_P10102_F10102001_G24.json",
|
||||||
|
"Name": "EnvNPCs",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "气氛组",
|
||||||
|
"ID": 24,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "0e0217cf-780e-47a2-9380-59150282b10e",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10102_F10102001/LevelGroup_P10102_F10102001_G8.json",
|
||||||
|
"Name": "Books",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 8,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.5,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "6162b109-f77c-4c3c-a47f-b81cb74890db",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10102_F10102001/LevelGroup_P10102_F10102001_G4.json",
|
||||||
|
"Name": "MainMission01",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "1010402_地下",
|
||||||
|
"ID": 4,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "8f481ca0-011b-4222-ace3-5ce3249e27a9",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10102_F10102001/LevelGroup_P10102_F10102001_G5.json",
|
||||||
|
"Name": "MainMission02",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "1010402_2地火",
|
||||||
|
"ID": 5,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "30c408cb-27c4-474c-bc5c-3aaa750d1550",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10102_F10102001/LevelGroup_P10102_F10102001_G22.json",
|
||||||
|
"Name": "MainMission02_2",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "1010402_与首谈判前",
|
||||||
|
"ID": 22,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "83094bbb-38dc-458e-b2c9-0adbd00cd650",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10102_F10102001/LevelGroup_P10102_F10102001_G6.json",
|
||||||
|
"Name": "MainMission03",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "1010403_追捕",
|
||||||
|
"ID": 6,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "b397c9dd-cc67-45d6-81e9-fc72be38b736",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10102_F10102001/LevelGroup_P10102_F10102001_G7.json",
|
||||||
|
"Name": "MainMission04",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "1010407",
|
||||||
|
"ID": 7,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "57435c20-aaa6-4d1a-8acd-72d00b2233c2",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10102_F10102001/LevelGroup_P10102_F10102001_G9.json",
|
||||||
|
"Name": "MainMission",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "2-2前衔接_101041101_奥列格对话前",
|
||||||
|
"ID": 9,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "13d949b9-2a69-43ab-8714-832986bc1687",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10102_F10102001/LevelGroup_P10102_F10102001_G10.json",
|
||||||
|
"Name": "MainMission",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "2-2前衔接_101041201_奥列格对话后",
|
||||||
|
"ID": 10,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "6d4b67a1-cd94-4f6a-88a3-0909993d0935",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10102_F10102001/LevelGroup_P10102_F10102001_G11.json",
|
||||||
|
"Name": "MainMission",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "2-2前衔接_101041204_旅店门口",
|
||||||
|
"ID": 11,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "2097e9b1-1fd5-4802-b879-452899ea602a",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10102_F10102001/LevelGroup_P10102_F10102001_G12.json",
|
||||||
|
"Name": "MainMission",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "2-2前衔接_1010413_矿区入口",
|
||||||
|
"ID": 12,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "08a79b96-9415-4a7b-ad5c-7da6eace25ba",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10102_F10102001/LevelGroup_P10102_F10102001_G13.json",
|
||||||
|
"Name": "MainMission",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "2-3衔接任务_101042101",
|
||||||
|
"ID": 13,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "0a3b8e5f-3a0d-4996-b1ad-af8195be72b1",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10102_F10102001/LevelGroup_P10102_F10102001_G14.json",
|
||||||
|
"Name": "MainMission",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "2-3衔接任务_101042102",
|
||||||
|
"ID": 14,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "4c029a54-4e29-4534-8f24-6dfb399986e7",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10102_F10102001/LevelGroup_P10102_F10102001_G15.json",
|
||||||
|
"Name": "MainMission",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "2-3衔接任务_101042103",
|
||||||
|
"ID": 15,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "18fc98dd-f4a4-43f2-836a-7bd65db6d650",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10102_F10102001/LevelGroup_P10102_F10102001_G16.json",
|
||||||
|
"Name": "SubMission",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "支线任务201050101",
|
||||||
|
"ID": 16,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "4a9aeb90-5bd4-4c2f-a1f7-401275c29347",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10102_F10102001/LevelGroup_P10102_F10102001_G17.json",
|
||||||
|
"Name": "New Group",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "3-1前置剧情",
|
||||||
|
"ID": 17,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "4cdc5493-a87e-4a81-b75b-fb25905b511e",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10102_F10102001/LevelGroup_P10102_F10102001_G18.json",
|
||||||
|
"Name": "SubMission",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "支线任务201050101",
|
||||||
|
"ID": 18,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "52388a6d-4049-4754-b42c-8b6ca08a36fb",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10102_F10102001/LevelGroup_P10102_F10102001_G19.json",
|
||||||
|
"Name": "SubMission",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "支线任务201070201",
|
||||||
|
"ID": 19,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "99168472-c4b0-4116-8449-6d2f835e037a",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10102_F10102001/LevelGroup_P10102_F10102001_G20.json",
|
||||||
|
"Name": "SubMission",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "支线前谭雅",
|
||||||
|
"ID": 20,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "d64f4739-c6d6-47db-909c-67d57fc48097",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10102_F10102001/LevelGroup_P10102_F10102001_G21.json",
|
||||||
|
"Name": "SubMission",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "支线后谭雅",
|
||||||
|
"ID": 21,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "0505c837-fd54-4768-a40c-c10925ba2c8c",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10102_F10102001/LevelGroup_P10102_F10102001_G25.json",
|
||||||
|
"Name": "SubMission",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "巴列维支线前谭雅",
|
||||||
|
"ID": 25,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "58cfda85-d2b9-409d-af3b-5f50908eb345",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10102_F10102001/LevelGroup_P10102_F10102001_G27.json",
|
||||||
|
"Name": "SubMission",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "歌蒂支线任务气氛组",
|
||||||
|
"ID": 27,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "28d74399-95db-4d77-94fb-f6d4c62eee54",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10102_F10102001/LevelGroup_P10102_F10102001_G28.json",
|
||||||
|
"Name": "MapNPC",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "常驻匹克",
|
||||||
|
"ID": 28,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "a0bfb533-0aa5-4de2-8461-0c5897b8ef06",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10102_F10102001/LevelGroup_P10102_F10102001_G29.json",
|
||||||
|
"Name": "Mainmission",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "临时桑博",
|
||||||
|
"ID": 29,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"DefaultGroupIDList": [
|
||||||
|
30,
|
||||||
|
2,
|
||||||
|
3,
|
||||||
|
24,
|
||||||
|
8,
|
||||||
|
16
|
||||||
|
],
|
||||||
|
"UnlockMainMissionGroupIDList": [
|
||||||
|
23,
|
||||||
|
26,
|
||||||
|
18,
|
||||||
|
21,
|
||||||
|
28
|
||||||
|
],
|
||||||
|
"EnviroProfile": "Stages/Outputs/Chapter01/EnviroProfile/Chap01_CloseView_ADV_Area_UnderCity_01_Day.enviroProfile.asset",
|
||||||
|
"StageData": "Stages/Outputs/Chapter01/Stages/Chap01_ADV_Area_UnderCity_01_StageData/Chap01_ADV_Area_UnderCity_01_StageData.stage",
|
||||||
|
"NavMesh": "Level/NavMesh/NavMesh-Floor_10102001.asset",
|
||||||
|
"MinimapVolume": "Level/MinimapVolume/MinimapVolume-Floor_10102001.prefab",
|
||||||
|
"CameraType": "Base",
|
||||||
|
"MinimapVolumeData": {
|
||||||
|
"BackgroundMapSpriteInstance": null,
|
||||||
|
"Center": {
|
||||||
|
"x": -34.29,
|
||||||
|
"y": 18.99258,
|
||||||
|
"z": 4.26,
|
||||||
|
"normalized": {
|
||||||
|
"x": -0.8696578,
|
||||||
|
"y": 0.48168695,
|
||||||
|
"z": 0.10804148,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.0
|
||||||
|
},
|
||||||
|
"magnitude": 39.4293022,
|
||||||
|
"sqrMagnitude": 1554.66992
|
||||||
|
},
|
||||||
|
"Size": {
|
||||||
|
"x": 169.81,
|
||||||
|
"y": 62.0148,
|
||||||
|
"z": 228.4908,
|
||||||
|
"normalized": {
|
||||||
|
"x": 0.582823038,
|
||||||
|
"y": 0.212847635,
|
||||||
|
"z": 0.784227669,
|
||||||
|
"normalized": {
|
||||||
|
"x": 0.5828231,
|
||||||
|
"y": 0.21284765,
|
||||||
|
"z": 0.7842277,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.0
|
||||||
|
},
|
||||||
|
"magnitude": 0.99999994,
|
||||||
|
"sqrMagnitude": 0.9999999
|
||||||
|
},
|
||||||
|
"magnitude": 291.357727,
|
||||||
|
"sqrMagnitude": 84889.32
|
||||||
|
},
|
||||||
|
"Scale": 3.0,
|
||||||
|
"CompleteScale": 3.0,
|
||||||
|
"SectionVertices": [
|
||||||
|
{
|
||||||
|
"x": -84.905,
|
||||||
|
"y": 114.2454,
|
||||||
|
"normalized": {
|
||||||
|
"x": -0.596491456,
|
||||||
|
"y": 0.802619457,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.0
|
||||||
|
},
|
||||||
|
"magnitude": 142.340683,
|
||||||
|
"sqrMagnitude": 20260.8711
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 84.905,
|
||||||
|
"y": 114.2454,
|
||||||
|
"normalized": {
|
||||||
|
"x": 0.596491456,
|
||||||
|
"y": 0.802619457,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.0
|
||||||
|
},
|
||||||
|
"magnitude": 142.340683,
|
||||||
|
"sqrMagnitude": 20260.8711
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 84.905,
|
||||||
|
"y": -114.2454,
|
||||||
|
"normalized": {
|
||||||
|
"x": 0.596491456,
|
||||||
|
"y": -0.802619457,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.0
|
||||||
|
},
|
||||||
|
"magnitude": 142.340683,
|
||||||
|
"sqrMagnitude": 20260.8711
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": -84.905,
|
||||||
|
"y": -114.2454,
|
||||||
|
"normalized": {
|
||||||
|
"x": -0.596491456,
|
||||||
|
"y": -0.802619457,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.0
|
||||||
|
},
|
||||||
|
"magnitude": 142.340683,
|
||||||
|
"sqrMagnitude": 20260.8711
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"Atlas": "SpriteOutput/MapPics/Minimap/Minimap_10102001/SectionAtlas/MinimapSection_10102001_Atlas.spriteatlas",
|
||||||
|
"Sections": [
|
||||||
|
{
|
||||||
|
"ID": 0,
|
||||||
|
"Sprite": "SpriteOutput/MapPics/Minimap/Minimap_10102001/SectionAtlas/MinimapSection_10102001_0.png",
|
||||||
|
"IsRect": true,
|
||||||
|
"Indices": [
|
||||||
|
2,
|
||||||
|
3,
|
||||||
|
0,
|
||||||
|
1
|
||||||
|
],
|
||||||
|
"UIPosition": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"InitialHidden": false,
|
||||||
|
"Type": "Normal",
|
||||||
|
"Center": {
|
||||||
|
"x": -84.905,
|
||||||
|
"y": 114.2454,
|
||||||
|
"normalized": {
|
||||||
|
"x": -0.596491456,
|
||||||
|
"y": 0.802619457,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.0
|
||||||
|
},
|
||||||
|
"magnitude": 142.340683,
|
||||||
|
"sqrMagnitude": 20260.8711
|
||||||
|
},
|
||||||
|
"GroupID": 0,
|
||||||
|
"PropID": 0
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"BackgroundMapSprite": "SpriteOutput/MapPics/Minimap/Minimap_10102001/Background.png",
|
||||||
|
"CombineLayerAutomatic": false,
|
||||||
|
"Rotation": 0.0
|
||||||
|
}
|
||||||
|
}
|
129
RPG.GameCore/data/Config/LevelOutput/Floor/P10102_F10102002.json
Normal file
129
RPG.GameCore/data/Config/LevelOutput/Floor/P10102_F10102002.json
Normal file
|
@ -0,0 +1,129 @@
|
||||||
|
{
|
||||||
|
"FloorID": 10102002,
|
||||||
|
"FloorName": "FloorName_10102002",
|
||||||
|
"SceneName": null,
|
||||||
|
"StartGroupID": 2,
|
||||||
|
"StartAnchorID": 1,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"GroupList": [
|
||||||
|
{
|
||||||
|
"GroupGUID": "517de9a2-3a23-466c-8ece-01d6d762cb1a",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10102_F10102002/LevelGroup_P10102_F10102002_G2.json",
|
||||||
|
"Name": "Default",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 2,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "6748a7b0-d959-449a-b5ee-c082834422b1",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10102_F10102002/LevelGroup_P10102_F10102002_G4.json",
|
||||||
|
"Name": "Books",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 4,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "a020c270-b207-4836-89cd-ee28b4238d2a",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10102_F10102002/LevelGroup_P10102_F10102002_G3.json",
|
||||||
|
"Name": "MainMission",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 3,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "a7f28201-aecd-4cb4-a907-ffd162daee91",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10102_F10102002/LevelGroup_P10102_F10102002_G5.json",
|
||||||
|
"Name": "Mission1010401",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 5,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "018102e2-0061-4ce1-9176-e2f6bc97d3e6",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10102_F10102002/LevelGroup_P10102_F10102002_G6.json",
|
||||||
|
"Name": "1010402",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "首领出现前",
|
||||||
|
"ID": 6,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "6860bb65-506f-4810-b78e-d10ba873670f",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10102_F10102002/LevelGroup_P10102_F10102002_G7.json",
|
||||||
|
"Name": "MainMission",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "2-2前衔接任务_101041203",
|
||||||
|
"ID": 7,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "d3920ec5-02bd-4e50-a63b-02761fa19ee5",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10102_F10102002/LevelGroup_P10102_F10102002_G8.json",
|
||||||
|
"Name": "New Group",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "3-1前置任务",
|
||||||
|
"ID": 8,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"DefaultGroupIDList": [
|
||||||
|
2,
|
||||||
|
4
|
||||||
|
],
|
||||||
|
"UnlockMainMissionGroupIDList": [],
|
||||||
|
"EnviroProfile": "Stages/Outputs/Chapter01/EnviroProfile/Chap01_CloseView_INT_Orphanage_01_Room_Day.enviroProfile.asset",
|
||||||
|
"StageData": "Stages/Outputs/Chapter01/Stages/Chap01_INT_Orphanage_01_Room_StageData/Chap01_INT_Orphanage_01_Room_StageData.stage",
|
||||||
|
"NavMesh": "Level/NavMesh/NavMesh-Floor_10102002.asset",
|
||||||
|
"MinimapVolume": null,
|
||||||
|
"CameraType": "Room",
|
||||||
|
"MinimapVolumeData": {
|
||||||
|
"BackgroundMapSpriteInstance": null,
|
||||||
|
"Center": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Size": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Scale": 0.0,
|
||||||
|
"CompleteScale": 3.0,
|
||||||
|
"SectionVertices": null,
|
||||||
|
"Atlas": null,
|
||||||
|
"Sections": null,
|
||||||
|
"BackgroundMapSprite": null,
|
||||||
|
"CombineLayerAutomatic": false,
|
||||||
|
"Rotation": 0.0
|
||||||
|
}
|
||||||
|
}
|
121
RPG.GameCore/data/Config/LevelOutput/Floor/P10102_F10102003.json
Normal file
121
RPG.GameCore/data/Config/LevelOutput/Floor/P10102_F10102003.json
Normal file
|
@ -0,0 +1,121 @@
|
||||||
|
{
|
||||||
|
"FloorID": 10102003,
|
||||||
|
"FloorName": "FloorName_10102003",
|
||||||
|
"SceneName": null,
|
||||||
|
"StartGroupID": 2,
|
||||||
|
"StartAnchorID": 1,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"GroupList": [
|
||||||
|
{
|
||||||
|
"GroupGUID": "06436216-46be-42bb-9947-3855883eec0c",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10102_F10102003/LevelGroup_P10102_F10102003_G2.json",
|
||||||
|
"Name": "Default",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 2,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "b7fae1c2-52b6-4745-957e-0d9f5cbd57a3",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10102_F10102003/LevelGroup_P10102_F10102003_G5.json",
|
||||||
|
"Name": "NPCs",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "常驻NPC",
|
||||||
|
"ID": 5,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "a31e6f54-9a30-4d79-bf2c-1e6b42ee45a1",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10102_F10102003/LevelGroup_P10102_F10102003_G4.json",
|
||||||
|
"Name": "Books",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 4,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "60d6262d-99de-4a47-8281-1dad625c364c",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10102_F10102003/LevelGroup_P10102_F10102003_G3.json",
|
||||||
|
"Name": "1010403",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "主线_秘药NPC",
|
||||||
|
"ID": 3,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "e345fc9b-2448-46a6-ac39-f1acd51931a6",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P10102_F10102003/LevelGroup_P10102_F10102003_G6.json",
|
||||||
|
"Name": "SubMission",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "人怕入错行",
|
||||||
|
"ID": 6,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"DefaultGroupIDList": [
|
||||||
|
2,
|
||||||
|
5,
|
||||||
|
4,
|
||||||
|
6
|
||||||
|
],
|
||||||
|
"UnlockMainMissionGroupIDList": [],
|
||||||
|
"EnviroProfile": "Stages/Outputs/Chapter01/EnviroProfile/Chap01_CloseView_ADV_INT_HospitalRoom_01.enviroProfile.asset",
|
||||||
|
"StageData": "Stages/Outputs/Chapter01/Stages/Chap01_INT_HospitalRoom_01_StageData/Chap01_INT_HospitalRoom_01_StageData.stage",
|
||||||
|
"NavMesh": "Level/NavMesh/NavMesh-Floor_10102003.asset",
|
||||||
|
"MinimapVolume": null,
|
||||||
|
"CameraType": "Room",
|
||||||
|
"MinimapVolumeData": {
|
||||||
|
"BackgroundMapSpriteInstance": null,
|
||||||
|
"Center": {
|
||||||
|
"x": -0.573631,
|
||||||
|
"y": 1.869193,
|
||||||
|
"z": -0.240247,
|
||||||
|
"normalized": {
|
||||||
|
"x": -0.2911925,
|
||||||
|
"y": 0.948859036,
|
||||||
|
"z": -0.121956661,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.0
|
||||||
|
},
|
||||||
|
"magnitude": 1.96993744,
|
||||||
|
"sqrMagnitude": 3.88065338
|
||||||
|
},
|
||||||
|
"Size": {
|
||||||
|
"x": 16.54439,
|
||||||
|
"y": 4.700254,
|
||||||
|
"z": 17.16761,
|
||||||
|
"normalized": {
|
||||||
|
"x": 0.680812538,
|
||||||
|
"y": 0.193418548,
|
||||||
|
"z": 0.706458449,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.0
|
||||||
|
},
|
||||||
|
"magnitude": 24.3009472,
|
||||||
|
"sqrMagnitude": 590.536
|
||||||
|
},
|
||||||
|
"Scale": 1.0,
|
||||||
|
"CompleteScale": 3.0,
|
||||||
|
"SectionVertices": null,
|
||||||
|
"Atlas": null,
|
||||||
|
"Sections": null,
|
||||||
|
"BackgroundMapSprite": null,
|
||||||
|
"CombineLayerAutomatic": false,
|
||||||
|
"Rotation": 0.0
|
||||||
|
}
|
||||||
|
}
|
837
RPG.GameCore/data/Config/LevelOutput/Floor/P20101_F20101001.json
Normal file
837
RPG.GameCore/data/Config/LevelOutput/Floor/P20101_F20101001.json
Normal file
|
@ -0,0 +1,837 @@
|
||||||
|
{
|
||||||
|
"FloorID": 20101001,
|
||||||
|
"FloorName": "FloorName_20101001",
|
||||||
|
"SceneName": null,
|
||||||
|
"StartGroupID": 2,
|
||||||
|
"StartAnchorID": 2,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"GroupList": [
|
||||||
|
{
|
||||||
|
"GroupGUID": "21d214ed-7c1e-436b-84e5-2e20787c70e0",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P20101_F20101001/LevelGroup_P20101_F20101001_G2.json",
|
||||||
|
"Name": "DefaultData",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 2,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "6de9099c-03f3-4c49-934f-49326cc6247d",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P20101_F20101001/LevelGroup_P20101_F20101001_G17.json",
|
||||||
|
"Name": "出生点",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 17,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "92039415-14d7-4497-88f7-d02dc426e13a",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P20101_F20101001/LevelGroup_P20101_F20101001_G3.json",
|
||||||
|
"Name": "MainMission_Data",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "101010107",
|
||||||
|
"ID": 3,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "f6f5764b-783b-4317-a6fb-2abd9a55aae2",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P20101_F20101001/LevelGroup_P20101_F20101001_G4.json",
|
||||||
|
"Name": "PropInteract",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "可交互物件",
|
||||||
|
"ID": 4,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "0086eded-16fa-4b85-be4e-e6f1f8c0365d",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P20101_F20101001/LevelGroup_P20101_F20101001_G14.json",
|
||||||
|
"Name": "DefaultProp",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "探索状态宝箱破坏物",
|
||||||
|
"ID": 14,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "ce3cc1d2-fc37-4e07-9416-8ebacb4faa34",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P20101_F20101001/LevelGroup_P20101_F20101001_G16.json",
|
||||||
|
"Name": "DefaultEndline",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "探索状态封锁线",
|
||||||
|
"ID": 16,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "f2cde1cb-73a3-455d-b104-c462c7ec3be4",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P20101_F20101001/LevelGroup_P20101_F20101001_G18.json",
|
||||||
|
"Name": "DefaultChest",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "探索状态宝箱",
|
||||||
|
"ID": 18,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "7dbce7a8-b6a1-49c4-b722-7bc2183b1d50",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P20101_F20101001/LevelGroup_P20101_F20101001_G19.json",
|
||||||
|
"Name": "DefaultCocoon",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 19,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "aa34ca3e-d1b8-4e4b-aa9c-bae4992f43f6",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P20101_F20101001/LevelGroup_P20101_F20101001_G5.json",
|
||||||
|
"Name": "Day",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "每日任务",
|
||||||
|
"ID": 5,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "e03833be-dc4e-449d-8460-6d7a691fd72f",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P20101_F20101001/LevelGroup_P20101_F20101001_G6.json",
|
||||||
|
"Name": "PropInteract02",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "101010107",
|
||||||
|
"ID": 6,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "5e41e707-2cc0-4d63-9407-595f60c38967",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P20101_F20101001/LevelGroup_P20101_F20101001_G7.json",
|
||||||
|
"Name": "PropInteract",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "101010106",
|
||||||
|
"ID": 7,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "d06ef276-a352-4489-805e-d63f2eb824f9",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P20101_F20101001/LevelGroup_P20101_F20101001_G8.json",
|
||||||
|
"Name": "PropInteract03",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "101010104",
|
||||||
|
"ID": 8,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "8c6eea59-6cb3-488f-8b5d-2b9f28ad97b3",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P20101_F20101001/LevelGroup_P20101_F20101001_G9.json",
|
||||||
|
"Name": "PropInteract04",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "101010101",
|
||||||
|
"ID": 9,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "ba08b71d-a4f1-48c1-a955-d70836cda19f",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P20101_F20101001/LevelGroup_P20101_F20101001_G10.json",
|
||||||
|
"Name": "PropInteract05",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "101010102",
|
||||||
|
"ID": 10,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "b15cccf2-da91-4a2a-a038-5b9b57667a2b",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P20101_F20101001/LevelGroup_P20101_F20101001_G11.json",
|
||||||
|
"Name": "PropInteract06",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "101010103",
|
||||||
|
"ID": 11,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "31531545-2529-4a1e-8cf2-355bae627ce3",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P20101_F20101001/LevelGroup_P20101_F20101001_G12.json",
|
||||||
|
"Name": "PropInteract07",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "101010105",
|
||||||
|
"ID": 12,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "dadb2389-01d9-44db-87f0-2f108af0c5d3",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P20101_F20101001/LevelGroup_P20101_F20101001_G13.json",
|
||||||
|
"Name": "DailyCollect",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "每日任务-搜集",
|
||||||
|
"ID": 13,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "14c30aca-a36e-4f73-a653-6edab24e2a39",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P20101_F20101001/LevelGroup_P20101_F20101001_G15.json",
|
||||||
|
"Name": "ExploreMonster",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "探器状态怪物",
|
||||||
|
"ID": 15,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "2ae9c4c2-e6b2-4a53-a021-b93d5534176c",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P20101_F20101001/LevelGroup_P20101_F20101001_G20.json",
|
||||||
|
"Name": "Tutorial",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 20,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "cc08908b-891b-4caa-8b5e-974ebd492504",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P20101_F20101001/LevelGroup_P20101_F20101001_G21.json",
|
||||||
|
"Name": "DailyCollect",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "每日任务收集2",
|
||||||
|
"ID": 21,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "84c8e6ee-c02d-4f28-a2a8-7490e44dec9b",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P20101_F20101001/LevelGroup_P20101_F20101001_G22.json",
|
||||||
|
"Name": "DailyCollect",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "每日任务收集3",
|
||||||
|
"ID": 22,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"DefaultGroupIDList": [
|
||||||
|
2,
|
||||||
|
17,
|
||||||
|
4,
|
||||||
|
20,
|
||||||
|
21,
|
||||||
|
22
|
||||||
|
],
|
||||||
|
"UnlockMainMissionGroupIDList": [
|
||||||
|
14,
|
||||||
|
16,
|
||||||
|
18,
|
||||||
|
19,
|
||||||
|
15
|
||||||
|
],
|
||||||
|
"EnviroProfile": "Stages/Outputs/Chapter01/EnviroProfile/Chap01_CloseView_ADV_Area_Snowfield_01_Foggy.enviroProfile.asset",
|
||||||
|
"StageData": "Stages/Outputs/Chapter01/Stages/Chap01_ADV_Area_Snowfield_01_StageData/Chap01_ADV_Area_Snowfield_01_StageData.stage",
|
||||||
|
"NavMesh": "Level/NavMesh/NavMesh-Floor_20101001.asset",
|
||||||
|
"MinimapVolume": null,
|
||||||
|
"CameraType": "Maze",
|
||||||
|
"MinimapVolumeData": {
|
||||||
|
"BackgroundMapSpriteInstance": null,
|
||||||
|
"Center": {
|
||||||
|
"x": -54.22949,
|
||||||
|
"y": 13.63371,
|
||||||
|
"z": -27.90946,
|
||||||
|
"normalized": {
|
||||||
|
"x": -0.867738068,
|
||||||
|
"y": 0.21815601,
|
||||||
|
"z": -0.446585447,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.0
|
||||||
|
},
|
||||||
|
"magnitude": 62.4952278,
|
||||||
|
"sqrMagnitude": 3905.65332
|
||||||
|
},
|
||||||
|
"Size": {
|
||||||
|
"x": 360.0,
|
||||||
|
"y": 106.9357,
|
||||||
|
"z": 200.0,
|
||||||
|
"normalized": {
|
||||||
|
"x": 0.846098542,
|
||||||
|
"y": 0.25132817,
|
||||||
|
"z": 0.470054746,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.0
|
||||||
|
},
|
||||||
|
"magnitude": 425.482361,
|
||||||
|
"sqrMagnitude": 181035.25
|
||||||
|
},
|
||||||
|
"Scale": 3.0,
|
||||||
|
"CompleteScale": 3.0,
|
||||||
|
"SectionVertices": [
|
||||||
|
{
|
||||||
|
"x": 177.937,
|
||||||
|
"y": 48.91305,
|
||||||
|
"normalized": {
|
||||||
|
"x": 0.964232564,
|
||||||
|
"y": 0.265057623,
|
||||||
|
"normalized": {
|
||||||
|
"x": 0.9642326,
|
||||||
|
"y": 0.265057653,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.00000012
|
||||||
|
},
|
||||||
|
"magnitude": 0.99999994,
|
||||||
|
"sqrMagnitude": 0.99999994
|
||||||
|
},
|
||||||
|
"magnitude": 184.53743,
|
||||||
|
"sqrMagnitude": 34054.0625
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 177.937,
|
||||||
|
"y": -45.28985,
|
||||||
|
"normalized": {
|
||||||
|
"x": 0.969101369,
|
||||||
|
"y": -0.246662885,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.00000012
|
||||||
|
},
|
||||||
|
"magnitude": 183.6103,
|
||||||
|
"sqrMagnitude": 33712.7461
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 120.1719,
|
||||||
|
"y": -45.28985,
|
||||||
|
"normalized": {
|
||||||
|
"x": 0.9357509,
|
||||||
|
"y": -0.3526616,
|
||||||
|
"normalized": {
|
||||||
|
"x": 0.935750961,
|
||||||
|
"y": -0.352661639,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.00000012
|
||||||
|
},
|
||||||
|
"magnitude": 0.99999994,
|
||||||
|
"sqrMagnitude": 0.99999994
|
||||||
|
},
|
||||||
|
"magnitude": 128.422958,
|
||||||
|
"sqrMagnitude": 16492.4551
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 102.0,
|
||||||
|
"y": 49.0,
|
||||||
|
"normalized": {
|
||||||
|
"x": 0.9013851,
|
||||||
|
"y": 0.433018327,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.0
|
||||||
|
},
|
||||||
|
"magnitude": 113.15918,
|
||||||
|
"sqrMagnitude": 12805.0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 120.1719,
|
||||||
|
"y": -95.28985,
|
||||||
|
"normalized": {
|
||||||
|
"x": 0.783557653,
|
||||||
|
"y": -0.621319056,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.0
|
||||||
|
},
|
||||||
|
"magnitude": 153.36702,
|
||||||
|
"sqrMagnitude": 23521.4414
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 17.70773,
|
||||||
|
"y": -45.28985,
|
||||||
|
"normalized": {
|
||||||
|
"x": 0.364142776,
|
||||||
|
"y": -0.9313431,
|
||||||
|
"normalized": {
|
||||||
|
"x": 0.3641428,
|
||||||
|
"y": -0.931343138,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.0
|
||||||
|
},
|
||||||
|
"magnitude": 0.99999994,
|
||||||
|
"sqrMagnitude": 0.9999999
|
||||||
|
},
|
||||||
|
"magnitude": 48.6285324,
|
||||||
|
"sqrMagnitude": 2364.73413
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 92.66476,
|
||||||
|
"y": 48.91305,
|
||||||
|
"normalized": {
|
||||||
|
"x": 0.8843586,
|
||||||
|
"y": 0.4668083,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.00000012
|
||||||
|
},
|
||||||
|
"magnitude": 104.781883,
|
||||||
|
"sqrMagnitude": 10979.2432
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 17.70773,
|
||||||
|
"y": 60.14492,
|
||||||
|
"normalized": {
|
||||||
|
"x": 0.282431245,
|
||||||
|
"y": 0.9592876,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.0
|
||||||
|
},
|
||||||
|
"magnitude": 62.6974869,
|
||||||
|
"sqrMagnitude": 3930.975
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": -103.6676,
|
||||||
|
"y": 95.28985,
|
||||||
|
"normalized": {
|
||||||
|
"x": -0.73622936,
|
||||||
|
"y": 0.676732,
|
||||||
|
"normalized": {
|
||||||
|
"x": -0.7362294,
|
||||||
|
"y": 0.676732063,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.0
|
||||||
|
},
|
||||||
|
"magnitude": 0.99999994,
|
||||||
|
"sqrMagnitude": 0.9999999
|
||||||
|
},
|
||||||
|
"magnitude": 140.808838,
|
||||||
|
"sqrMagnitude": 19827.127
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": -103.6676,
|
||||||
|
"y": -45.28985,
|
||||||
|
"normalized": {
|
||||||
|
"x": -0.9163673,
|
||||||
|
"y": -0.400338531,
|
||||||
|
"normalized": {
|
||||||
|
"x": -0.916367352,
|
||||||
|
"y": -0.40033856,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.00000012
|
||||||
|
},
|
||||||
|
"magnitude": 0.99999994,
|
||||||
|
"sqrMagnitude": 0.99999994
|
||||||
|
},
|
||||||
|
"magnitude": 113.128876,
|
||||||
|
"sqrMagnitude": 12798.1426
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 84.00001,
|
||||||
|
"y": 1.666665,
|
||||||
|
"normalized": {
|
||||||
|
"x": 0.999803245,
|
||||||
|
"y": 0.0198373441,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.00000012
|
||||||
|
},
|
||||||
|
"magnitude": 84.01654,
|
||||||
|
"sqrMagnitude": 7058.7793
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 84.00001,
|
||||||
|
"y": -0.333333,
|
||||||
|
"normalized": {
|
||||||
|
"x": 0.9999921,
|
||||||
|
"y": -0.00396821834,
|
||||||
|
"normalized": {
|
||||||
|
"x": 0.999992132,
|
||||||
|
"y": -0.003968219,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.0
|
||||||
|
},
|
||||||
|
"magnitude": 0.99999994,
|
||||||
|
"sqrMagnitude": 0.9999999
|
||||||
|
},
|
||||||
|
"magnitude": 84.00067,
|
||||||
|
"sqrMagnitude": 7056.113
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 82.33332,
|
||||||
|
"y": -3.999996,
|
||||||
|
"normalized": {
|
||||||
|
"x": 0.998822,
|
||||||
|
"y": -0.04852572,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.00000012
|
||||||
|
},
|
||||||
|
"magnitude": 82.43043,
|
||||||
|
"sqrMagnitude": 6794.776
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 76.00001,
|
||||||
|
"y": -23.66667,
|
||||||
|
"normalized": {
|
||||||
|
"x": 0.954777539,
|
||||||
|
"y": -0.297321081,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.0
|
||||||
|
},
|
||||||
|
"magnitude": 79.5997,
|
||||||
|
"sqrMagnitude": 6336.1123
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 74.0,
|
||||||
|
"y": -25.66667,
|
||||||
|
"normalized": {
|
||||||
|
"x": 0.9447835,
|
||||||
|
"y": -0.327695221,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.0
|
||||||
|
},
|
||||||
|
"magnitude": 78.32482,
|
||||||
|
"sqrMagnitude": 6134.778
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 66.0,
|
||||||
|
"y": -45.33334,
|
||||||
|
"normalized": {
|
||||||
|
"x": 0.8242848,
|
||||||
|
"y": -0.5661755,
|
||||||
|
"normalized": {
|
||||||
|
"x": 0.8242847,
|
||||||
|
"y": -0.566175461,
|
||||||
|
"normalized": {
|
||||||
|
"x": 0.824284732,
|
||||||
|
"y": -0.5661755,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.0
|
||||||
|
},
|
||||||
|
"magnitude": 0.99999994,
|
||||||
|
"sqrMagnitude": 0.9999999
|
||||||
|
},
|
||||||
|
"magnitude": 1.00000012,
|
||||||
|
"sqrMagnitude": 1.00000024
|
||||||
|
},
|
||||||
|
"magnitude": 80.06941,
|
||||||
|
"sqrMagnitude": 6411.11133
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 66.0,
|
||||||
|
"y": -96.33334,
|
||||||
|
"normalized": {
|
||||||
|
"x": 0.5651954,
|
||||||
|
"y": -0.824957,
|
||||||
|
"normalized": {
|
||||||
|
"x": 0.565195441,
|
||||||
|
"y": -0.8249571,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.0
|
||||||
|
},
|
||||||
|
"magnitude": 0.99999994,
|
||||||
|
"sqrMagnitude": 0.9999999
|
||||||
|
},
|
||||||
|
"magnitude": 116.773773,
|
||||||
|
"sqrMagnitude": 13636.1133
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"Atlas": "SpriteOutput/MapPics/Minimap/Minimap_20101001/SectionAtlas/MinimapSection_20101001_Atlas.spriteatlas",
|
||||||
|
"Sections": [
|
||||||
|
{
|
||||||
|
"ID": 0,
|
||||||
|
"Sprite": "SpriteOutput/MapPics/Minimap/Minimap_20101001/SectionAtlas/MinimapSection_20101001_0.png",
|
||||||
|
"IsRect": false,
|
||||||
|
"Indices": [
|
||||||
|
2,
|
||||||
|
3,
|
||||||
|
0,
|
||||||
|
1
|
||||||
|
],
|
||||||
|
"UIPosition": {
|
||||||
|
"x": 846.0,
|
||||||
|
"y": 164.0,
|
||||||
|
"normalized": {
|
||||||
|
"x": 0.9817239,
|
||||||
|
"y": 0.190310553,
|
||||||
|
"normalized": {
|
||||||
|
"x": 0.981723964,
|
||||||
|
"y": 0.190310568,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.00000012
|
||||||
|
},
|
||||||
|
"magnitude": 0.99999994,
|
||||||
|
"sqrMagnitude": 0.99999994
|
||||||
|
},
|
||||||
|
"magnitude": 861.7494,
|
||||||
|
"sqrMagnitude": 742612.0
|
||||||
|
},
|
||||||
|
"InitialHidden": true,
|
||||||
|
"Type": "Normal",
|
||||||
|
"Center": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"GroupID": 0,
|
||||||
|
"PropID": 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"ID": 3,
|
||||||
|
"Sprite": "SpriteOutput/MapPics/Minimap/Minimap_20101001/SectionAtlas/MinimapSection_20101001_3.png",
|
||||||
|
"IsRect": false,
|
||||||
|
"Indices": [
|
||||||
|
6,
|
||||||
|
5,
|
||||||
|
7
|
||||||
|
],
|
||||||
|
"UIPosition": {
|
||||||
|
"x": 593.0,
|
||||||
|
"y": 164.0,
|
||||||
|
"normalized": {
|
||||||
|
"x": 0.96382,
|
||||||
|
"y": 0.2665539,
|
||||||
|
"normalized": {
|
||||||
|
"x": 0.96382004,
|
||||||
|
"y": 0.266553938,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.0
|
||||||
|
},
|
||||||
|
"magnitude": 0.99999994,
|
||||||
|
"sqrMagnitude": 0.99999994
|
||||||
|
},
|
||||||
|
"magnitude": 615.260132,
|
||||||
|
"sqrMagnitude": 378545.0
|
||||||
|
},
|
||||||
|
"InitialHidden": true,
|
||||||
|
"Type": "Normal",
|
||||||
|
"Center": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"GroupID": 0,
|
||||||
|
"PropID": 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"ID": 4,
|
||||||
|
"Sprite": "SpriteOutput/MapPics/Minimap/Minimap_20101001/SectionAtlas/MinimapSection_20101001_4.png",
|
||||||
|
"IsRect": false,
|
||||||
|
"Indices": [
|
||||||
|
7,
|
||||||
|
8,
|
||||||
|
9,
|
||||||
|
5
|
||||||
|
],
|
||||||
|
"UIPosition": {
|
||||||
|
"x": 229.0,
|
||||||
|
"y": 164.0,
|
||||||
|
"normalized": {
|
||||||
|
"x": 0.8130132,
|
||||||
|
"y": 0.5822453,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.0
|
||||||
|
},
|
||||||
|
"magnitude": 281.668243,
|
||||||
|
"sqrMagnitude": 79337.0
|
||||||
|
},
|
||||||
|
"InitialHidden": true,
|
||||||
|
"Type": "Normal",
|
||||||
|
"Center": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"GroupID": 0,
|
||||||
|
"PropID": 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"ID": 1,
|
||||||
|
"Sprite": "SpriteOutput/MapPics/Minimap/Minimap_20101001/SectionAtlas/MinimapSection_20101001_1.png",
|
||||||
|
"IsRect": false,
|
||||||
|
"Indices": [
|
||||||
|
13,
|
||||||
|
14,
|
||||||
|
15,
|
||||||
|
2,
|
||||||
|
3,
|
||||||
|
10,
|
||||||
|
11,
|
||||||
|
12
|
||||||
|
],
|
||||||
|
"UIPosition": {
|
||||||
|
"x": 738.0,
|
||||||
|
"y": 164.0,
|
||||||
|
"normalized": {
|
||||||
|
"x": 0.9761871,
|
||||||
|
"y": 0.216930464,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.00000012
|
||||||
|
},
|
||||||
|
"magnitude": 756.0026,
|
||||||
|
"sqrMagnitude": 571540.0
|
||||||
|
},
|
||||||
|
"InitialHidden": true,
|
||||||
|
"Type": "Normal",
|
||||||
|
"Center": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"GroupID": 0,
|
||||||
|
"PropID": 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"ID": 2,
|
||||||
|
"Sprite": "SpriteOutput/MapPics/Minimap/Minimap_20101001/SectionAtlas/MinimapSection_20101001_2.png",
|
||||||
|
"IsRect": false,
|
||||||
|
"Indices": [
|
||||||
|
2,
|
||||||
|
4,
|
||||||
|
16,
|
||||||
|
15
|
||||||
|
],
|
||||||
|
"UIPosition": {
|
||||||
|
"x": 738.0,
|
||||||
|
"y": 11.0,
|
||||||
|
"normalized": {
|
||||||
|
"x": 0.999888957,
|
||||||
|
"y": 0.0149034942,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.0
|
||||||
|
},
|
||||||
|
"magnitude": 738.082,
|
||||||
|
"sqrMagnitude": 544765.0
|
||||||
|
},
|
||||||
|
"InitialHidden": true,
|
||||||
|
"Type": "Normal",
|
||||||
|
"Center": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"GroupID": 0,
|
||||||
|
"PropID": 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"ID": 5,
|
||||||
|
"Sprite": "SpriteOutput/MapPics/Minimap/Minimap_20101001/SectionAtlas/MinimapSection_20101001_5.png",
|
||||||
|
"IsRect": false,
|
||||||
|
"Indices": [
|
||||||
|
5,
|
||||||
|
16,
|
||||||
|
15
|
||||||
|
],
|
||||||
|
"UIPosition": {
|
||||||
|
"x": 593.0,
|
||||||
|
"y": 11.0,
|
||||||
|
"normalized": {
|
||||||
|
"x": 0.999828041,
|
||||||
|
"y": 0.0185465571,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.0
|
||||||
|
},
|
||||||
|
"magnitude": 593.102,
|
||||||
|
"sqrMagnitude": 351770.0
|
||||||
|
},
|
||||||
|
"InitialHidden": true,
|
||||||
|
"Type": "Normal",
|
||||||
|
"Center": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"GroupID": 0,
|
||||||
|
"PropID": 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"ID": 6,
|
||||||
|
"Sprite": "SpriteOutput/MapPics/Minimap/Minimap_20101001/SectionAtlas/MinimapSection_20101001_6.png",
|
||||||
|
"IsRect": false,
|
||||||
|
"Indices": [
|
||||||
|
15,
|
||||||
|
5,
|
||||||
|
6,
|
||||||
|
3,
|
||||||
|
10,
|
||||||
|
11,
|
||||||
|
12,
|
||||||
|
13,
|
||||||
|
14
|
||||||
|
],
|
||||||
|
"UIPosition": {
|
||||||
|
"x": 593.0,
|
||||||
|
"y": 164.0,
|
||||||
|
"normalized": {
|
||||||
|
"x": 0.96382,
|
||||||
|
"y": 0.2665539,
|
||||||
|
"normalized": {
|
||||||
|
"x": 0.96382004,
|
||||||
|
"y": 0.266553938,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.0
|
||||||
|
},
|
||||||
|
"magnitude": 0.99999994,
|
||||||
|
"sqrMagnitude": 0.99999994
|
||||||
|
},
|
||||||
|
"magnitude": 615.260132,
|
||||||
|
"sqrMagnitude": 378545.0
|
||||||
|
},
|
||||||
|
"InitialHidden": true,
|
||||||
|
"Type": "Normal",
|
||||||
|
"Center": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"GroupID": 0,
|
||||||
|
"PropID": 0
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"BackgroundMapSprite": "SpriteOutput/MapPics/Minimap/Minimap_20101001/Background.png",
|
||||||
|
"CombineLayerAutomatic": false,
|
||||||
|
"Rotation": 0.0
|
||||||
|
}
|
||||||
|
}
|
1522
RPG.GameCore/data/Config/LevelOutput/Floor/P20111_F20111001.json
Normal file
1522
RPG.GameCore/data/Config/LevelOutput/Floor/P20111_F20111001.json
Normal file
File diff suppressed because it is too large
Load diff
2917
RPG.GameCore/data/Config/LevelOutput/Floor/P20121_F20121001.json
Normal file
2917
RPG.GameCore/data/Config/LevelOutput/Floor/P20121_F20121001.json
Normal file
File diff suppressed because it is too large
Load diff
1415
RPG.GameCore/data/Config/LevelOutput/Floor/P20122_F20122001.json
Normal file
1415
RPG.GameCore/data/Config/LevelOutput/Floor/P20122_F20122001.json
Normal file
File diff suppressed because it is too large
Load diff
1674
RPG.GameCore/data/Config/LevelOutput/Floor/P20123_F20123001.json
Normal file
1674
RPG.GameCore/data/Config/LevelOutput/Floor/P20123_F20123001.json
Normal file
File diff suppressed because it is too large
Load diff
2481
RPG.GameCore/data/Config/LevelOutput/Floor/P20131_F20131001.json
Normal file
2481
RPG.GameCore/data/Config/LevelOutput/Floor/P20131_F20131001.json
Normal file
File diff suppressed because it is too large
Load diff
1959
RPG.GameCore/data/Config/LevelOutput/Floor/P20132_F20132001.json
Normal file
1959
RPG.GameCore/data/Config/LevelOutput/Floor/P20132_F20132001.json
Normal file
File diff suppressed because it is too large
Load diff
|
@ -0,0 +1,82 @@
|
||||||
|
{
|
||||||
|
"FloorID": 30101001,
|
||||||
|
"FloorName": "FloorName_30101001",
|
||||||
|
"SceneName": null,
|
||||||
|
"StartGroupID": 1,
|
||||||
|
"StartAnchorID": 1,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"GroupList": [
|
||||||
|
{
|
||||||
|
"GroupGUID": "06279034-391a-4897-bca1-4541a188e8ca",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P30101_F30101001/LevelGroup_P30101_F30101001_G1.json",
|
||||||
|
"Name": "DefaultGroup",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 1,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "99dd89f8-237e-44fa-8ae2-63079387a59a",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P30101_F30101001/LevelGroup_P30101_F30101001_G3.json",
|
||||||
|
"Name": "Contents",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 3,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "b3ed053b-1cf0-4791-9638-d2dcac2d01e4",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P30101_F30101001/LevelGroup_P30101_F30101001_G4.json",
|
||||||
|
"Name": "Door",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 4,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"DefaultGroupIDList": [
|
||||||
|
1,
|
||||||
|
3,
|
||||||
|
4
|
||||||
|
],
|
||||||
|
"UnlockMainMissionGroupIDList": [],
|
||||||
|
"EnviroProfile": "Stages/Outputs/Chapter01/EnviroProfile/Chap01_Maze_01.enviroProfile.asset",
|
||||||
|
"StageData": "Stages/Outputs/Chapter01/Stages/Chap01_MAZ_M101_MainLine_01_StageData/Chap01_MAZ_M101_MainLine_01_StageData.stage",
|
||||||
|
"NavMesh": "Level/NavMesh/NavMesh-Floor_30101001.asset",
|
||||||
|
"MinimapVolume": null,
|
||||||
|
"CameraType": "Maze",
|
||||||
|
"MinimapVolumeData": {
|
||||||
|
"BackgroundMapSpriteInstance": null,
|
||||||
|
"Center": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Size": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Scale": 0.0,
|
||||||
|
"CompleteScale": 3.0,
|
||||||
|
"SectionVertices": null,
|
||||||
|
"Atlas": null,
|
||||||
|
"Sections": null,
|
||||||
|
"BackgroundMapSprite": null,
|
||||||
|
"CombineLayerAutomatic": false,
|
||||||
|
"Rotation": 0.0
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,82 @@
|
||||||
|
{
|
||||||
|
"FloorID": 30102001,
|
||||||
|
"FloorName": "FloorName_30102001",
|
||||||
|
"SceneName": null,
|
||||||
|
"StartGroupID": 1,
|
||||||
|
"StartAnchorID": 1,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"GroupList": [
|
||||||
|
{
|
||||||
|
"GroupGUID": "2146a71e-8383-4f1e-875c-d0f460ec265c",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P30102_F30102001/LevelGroup_P30102_F30102001_G1.json",
|
||||||
|
"Name": "DefaultData",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 1,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "5ebac3f2-1e11-434c-9ee1-6c2fead78bcb",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P30102_F30102001/LevelGroup_P30102_F30102001_G3.json",
|
||||||
|
"Name": "Contents",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 3,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "45c9d468-5a87-4918-99e9-ddeeecee8dc1",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P30102_F30102001/LevelGroup_P30102_F30102001_G4.json",
|
||||||
|
"Name": "Door",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 4,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"DefaultGroupIDList": [
|
||||||
|
1,
|
||||||
|
3,
|
||||||
|
4
|
||||||
|
],
|
||||||
|
"UnlockMainMissionGroupIDList": [],
|
||||||
|
"EnviroProfile": "Stages/Outputs/Chapter01/EnviroProfile/Chap01_Maze_01.enviroProfile.asset",
|
||||||
|
"StageData": "Stages/Outputs/Chapter01/Stages/Chap01_MAZ_M101_MainLine_01_StageData/Chap01_MAZ_M101_MainLine_01_StageData.stage",
|
||||||
|
"NavMesh": "Level/NavMesh/NavMesh-Floor_30102001.asset",
|
||||||
|
"MinimapVolume": null,
|
||||||
|
"CameraType": "Maze",
|
||||||
|
"MinimapVolumeData": {
|
||||||
|
"BackgroundMapSpriteInstance": null,
|
||||||
|
"Center": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Size": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Scale": 0.0,
|
||||||
|
"CompleteScale": 3.0,
|
||||||
|
"SectionVertices": null,
|
||||||
|
"Atlas": null,
|
||||||
|
"Sections": null,
|
||||||
|
"BackgroundMapSprite": null,
|
||||||
|
"CombineLayerAutomatic": false,
|
||||||
|
"Rotation": 0.0
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,82 @@
|
||||||
|
{
|
||||||
|
"FloorID": 30103001,
|
||||||
|
"FloorName": "FloorName_30103001",
|
||||||
|
"SceneName": null,
|
||||||
|
"StartGroupID": 1,
|
||||||
|
"StartAnchorID": 1,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"GroupList": [
|
||||||
|
{
|
||||||
|
"GroupGUID": "ac468f8f-b02c-4ca8-834e-b2d22b21340a",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P30103_F30103001/LevelGroup_P30103_F30103001_G1.json",
|
||||||
|
"Name": "DefaultData",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 1,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "c70682c8-45f6-446e-b420-f44145665d05",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P30103_F30103001/LevelGroup_P30103_F30103001_G3.json",
|
||||||
|
"Name": "Contents",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 3,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "2496a0bf-2300-4c0b-bc68-eaf952422a66",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P30103_F30103001/LevelGroup_P30103_F30103001_G4.json",
|
||||||
|
"Name": "Door",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 4,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"DefaultGroupIDList": [
|
||||||
|
1,
|
||||||
|
3,
|
||||||
|
4
|
||||||
|
],
|
||||||
|
"UnlockMainMissionGroupIDList": [],
|
||||||
|
"EnviroProfile": "Stages/Outputs/Chapter01/EnviroProfile/Chap01_Maze_01.enviroProfile.asset",
|
||||||
|
"StageData": "Stages/Outputs/Chapter01/Stages/Chap01_MAZ_M101_MainLine_01_StageData/Chap01_MAZ_M101_MainLine_01_StageData.stage",
|
||||||
|
"NavMesh": "Level/NavMesh/NavMesh-Floor_30103001.asset",
|
||||||
|
"MinimapVolume": null,
|
||||||
|
"CameraType": "Maze",
|
||||||
|
"MinimapVolumeData": {
|
||||||
|
"BackgroundMapSpriteInstance": null,
|
||||||
|
"Center": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Size": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Scale": 0.0,
|
||||||
|
"CompleteScale": 3.0,
|
||||||
|
"SectionVertices": null,
|
||||||
|
"Atlas": null,
|
||||||
|
"Sections": null,
|
||||||
|
"BackgroundMapSprite": null,
|
||||||
|
"CombineLayerAutomatic": false,
|
||||||
|
"Rotation": 0.0
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,69 @@
|
||||||
|
{
|
||||||
|
"FloorID": 30104001,
|
||||||
|
"FloorName": "FloorName_30104001",
|
||||||
|
"SceneName": null,
|
||||||
|
"StartGroupID": 1,
|
||||||
|
"StartAnchorID": 1,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"GroupList": [
|
||||||
|
{
|
||||||
|
"GroupGUID": "f510c810-240c-4d78-a7bf-cf896d9f2801",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P30104_F30104001/LevelGroup_P30104_F30104001_G1.json",
|
||||||
|
"Name": "DefaultData",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 1,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "1710edb0-07fb-4a8e-8369-142ad870429b",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P30104_F30104001/LevelGroup_P30104_F30104001_G3.json",
|
||||||
|
"Name": "Contents",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 3,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"DefaultGroupIDList": [
|
||||||
|
1,
|
||||||
|
3
|
||||||
|
],
|
||||||
|
"UnlockMainMissionGroupIDList": [],
|
||||||
|
"EnviroProfile": "Stages/Outputs/Chapter01/EnviroProfile/Chap01_Maze_01.enviroProfile.asset",
|
||||||
|
"StageData": "Stages/Outputs/Chapter01/Stages/Chap01_MAZ_M301_MainLine_01_StageData/Chap01_MAZ_M301_MainLine_01_StageData.stage",
|
||||||
|
"NavMesh": "Level/NavMesh/NavMesh-Floor_30104001.asset",
|
||||||
|
"MinimapVolume": null,
|
||||||
|
"CameraType": "Maze",
|
||||||
|
"MinimapVolumeData": {
|
||||||
|
"BackgroundMapSpriteInstance": null,
|
||||||
|
"Center": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Size": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Scale": 0.0,
|
||||||
|
"CompleteScale": 3.0,
|
||||||
|
"SectionVertices": null,
|
||||||
|
"Atlas": null,
|
||||||
|
"Sections": null,
|
||||||
|
"BackgroundMapSprite": null,
|
||||||
|
"CombineLayerAutomatic": false,
|
||||||
|
"Rotation": 0.0
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,82 @@
|
||||||
|
{
|
||||||
|
"FloorID": 30105001,
|
||||||
|
"FloorName": "FloorName_30105001",
|
||||||
|
"SceneName": null,
|
||||||
|
"StartGroupID": 1,
|
||||||
|
"StartAnchorID": 1,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"GroupList": [
|
||||||
|
{
|
||||||
|
"GroupGUID": "34007374-6a34-4d20-ab5f-772e3860a094",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P30105_F30105001/LevelGroup_P30105_F30105001_G1.json",
|
||||||
|
"Name": "DefaultData",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 1,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "d8bf1bc9-e7b3-43f1-a94b-1e93fc61074f",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P30105_F30105001/LevelGroup_P30105_F30105001_G3.json",
|
||||||
|
"Name": "Contents",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 3,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "8240a135-cfaa-471c-bec6-02a126bedecc",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P30105_F30105001/LevelGroup_P30105_F30105001_G4.json",
|
||||||
|
"Name": "Door",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 4,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"DefaultGroupIDList": [
|
||||||
|
1,
|
||||||
|
3,
|
||||||
|
4
|
||||||
|
],
|
||||||
|
"UnlockMainMissionGroupIDList": [],
|
||||||
|
"EnviroProfile": "Stages/Outputs/Chapter01/EnviroProfile/Chap01_Maze_01.enviroProfile.asset",
|
||||||
|
"StageData": "Stages/Outputs/Chapter01/Stages/Chap01_MAZ_M301_MainLine_01_StageData/Chap01_MAZ_M301_MainLine_01_StageData.stage",
|
||||||
|
"NavMesh": "Level/NavMesh/NavMesh-Floor_30105001.asset",
|
||||||
|
"MinimapVolume": null,
|
||||||
|
"CameraType": "Maze",
|
||||||
|
"MinimapVolumeData": {
|
||||||
|
"BackgroundMapSpriteInstance": null,
|
||||||
|
"Center": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Size": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Scale": 0.0,
|
||||||
|
"CompleteScale": 3.0,
|
||||||
|
"SectionVertices": null,
|
||||||
|
"Atlas": null,
|
||||||
|
"Sections": null,
|
||||||
|
"BackgroundMapSprite": null,
|
||||||
|
"CombineLayerAutomatic": false,
|
||||||
|
"Rotation": 0.0
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,82 @@
|
||||||
|
{
|
||||||
|
"FloorID": 30106001,
|
||||||
|
"FloorName": "FloorName_30106001",
|
||||||
|
"SceneName": null,
|
||||||
|
"StartGroupID": 1,
|
||||||
|
"StartAnchorID": 1,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"GroupList": [
|
||||||
|
{
|
||||||
|
"GroupGUID": "ec87a145-8be1-4976-936d-840e93595e4f",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P30106_F30106001/LevelGroup_P30106_F30106001_G1.json",
|
||||||
|
"Name": "DefaultData",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 1,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "00e6ac6c-9124-4316-8849-55d02e4e80fc",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P30106_F30106001/LevelGroup_P30106_F30106001_G3.json",
|
||||||
|
"Name": "Contents",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 3,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "c1d7b4c7-4404-4b75-a0c9-3bafe25a5e67",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P30106_F30106001/LevelGroup_P30106_F30106001_G4.json",
|
||||||
|
"Name": "Door",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 4,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"DefaultGroupIDList": [
|
||||||
|
1,
|
||||||
|
3,
|
||||||
|
4
|
||||||
|
],
|
||||||
|
"UnlockMainMissionGroupIDList": [],
|
||||||
|
"EnviroProfile": "Stages/Outputs/Chapter01/EnviroProfile/Chap01_Maze_01.enviroProfile.asset",
|
||||||
|
"StageData": "Stages/Outputs/Chapter01/Stages/Chap01_MAZ_M302_MainLine_01_StageData/Chap01_MAZ_M302_MainLine_01_StageData.stage",
|
||||||
|
"NavMesh": "Level/NavMesh/NavMesh-Floor_30106001.asset",
|
||||||
|
"MinimapVolume": null,
|
||||||
|
"CameraType": "Maze",
|
||||||
|
"MinimapVolumeData": {
|
||||||
|
"BackgroundMapSpriteInstance": null,
|
||||||
|
"Center": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Size": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Scale": 0.0,
|
||||||
|
"CompleteScale": 3.0,
|
||||||
|
"SectionVertices": null,
|
||||||
|
"Atlas": null,
|
||||||
|
"Sections": null,
|
||||||
|
"BackgroundMapSprite": null,
|
||||||
|
"CombineLayerAutomatic": false,
|
||||||
|
"Rotation": 0.0
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,69 @@
|
||||||
|
{
|
||||||
|
"FloorID": 30107001,
|
||||||
|
"FloorName": "FloorName_30107001",
|
||||||
|
"SceneName": null,
|
||||||
|
"StartGroupID": 1,
|
||||||
|
"StartAnchorID": 1,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"GroupList": [
|
||||||
|
{
|
||||||
|
"GroupGUID": "2f20968e-252a-41bc-b635-bfee0f70b47a",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P30107_F30107001/LevelGroup_P30107_F30107001_G1.json",
|
||||||
|
"Name": "DefaultData",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 1,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "fe70ae90-b648-4312-a48c-46e7ee46d1fd",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P30107_F30107001/LevelGroup_P30107_F30107001_G3.json",
|
||||||
|
"Name": "Contents",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 3,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"DefaultGroupIDList": [
|
||||||
|
1,
|
||||||
|
3
|
||||||
|
],
|
||||||
|
"UnlockMainMissionGroupIDList": [],
|
||||||
|
"EnviroProfile": "Stages/Outputs/Chapter01/EnviroProfile/Chap01_CloseView_ADV_Area_UnderCity_01_Day.enviroProfile.asset",
|
||||||
|
"StageData": "Stages/Outputs/Chapter01/Stages/Chap01_MAZ_M201_MainLine_01_StageData/Chap01_MAZ_M201_MainLine_01_StageData.stage",
|
||||||
|
"NavMesh": "Level/NavMesh/NavMesh-Floor_30107001.asset",
|
||||||
|
"MinimapVolume": null,
|
||||||
|
"CameraType": "Maze",
|
||||||
|
"MinimapVolumeData": {
|
||||||
|
"BackgroundMapSpriteInstance": null,
|
||||||
|
"Center": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Size": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Scale": 0.0,
|
||||||
|
"CompleteScale": 3.0,
|
||||||
|
"SectionVertices": null,
|
||||||
|
"Atlas": null,
|
||||||
|
"Sections": null,
|
||||||
|
"BackgroundMapSprite": null,
|
||||||
|
"CombineLayerAutomatic": false,
|
||||||
|
"Rotation": 0.0
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,69 @@
|
||||||
|
{
|
||||||
|
"FloorID": 30108001,
|
||||||
|
"FloorName": "FloorName_30108001",
|
||||||
|
"SceneName": null,
|
||||||
|
"StartGroupID": 1,
|
||||||
|
"StartAnchorID": 1,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"GroupList": [
|
||||||
|
{
|
||||||
|
"GroupGUID": "9ed5d9be-9ea6-422e-ab7d-9ea73b3e3902",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P30108_F30108001/LevelGroup_P30108_F30108001_G1.json",
|
||||||
|
"Name": "DefaultData",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 1,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "64f60c39-868d-40d8-823e-a682e8c866f1",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P30108_F30108001/LevelGroup_P30108_F30108001_G3.json",
|
||||||
|
"Name": "Contents",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 3,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"DefaultGroupIDList": [
|
||||||
|
1,
|
||||||
|
3
|
||||||
|
],
|
||||||
|
"UnlockMainMissionGroupIDList": [],
|
||||||
|
"EnviroProfile": "Stages/Outputs/Chapter01/EnviroProfile/Chap01_CloseView_ADV_Area_UnderCity_01_Day.enviroProfile.asset",
|
||||||
|
"StageData": "Stages/Outputs/Chapter01/Stages/Chap01_MAZ_M202_MainLine_01_StageData/Chap01_MAZ_M202_MainLine_01_StageData.stage",
|
||||||
|
"NavMesh": "Level/NavMesh/NavMesh-Floor_30108001.asset",
|
||||||
|
"MinimapVolume": null,
|
||||||
|
"CameraType": "Maze",
|
||||||
|
"MinimapVolumeData": {
|
||||||
|
"BackgroundMapSpriteInstance": null,
|
||||||
|
"Center": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Size": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Scale": 0.0,
|
||||||
|
"CompleteScale": 3.0,
|
||||||
|
"SectionVertices": null,
|
||||||
|
"Atlas": null,
|
||||||
|
"Sections": null,
|
||||||
|
"BackgroundMapSprite": null,
|
||||||
|
"CombineLayerAutomatic": false,
|
||||||
|
"Rotation": 0.0
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,69 @@
|
||||||
|
{
|
||||||
|
"FloorID": 30109001,
|
||||||
|
"FloorName": "FloorName_30109001",
|
||||||
|
"SceneName": null,
|
||||||
|
"StartGroupID": 1,
|
||||||
|
"StartAnchorID": 1,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"GroupList": [
|
||||||
|
{
|
||||||
|
"GroupGUID": "f5c87aed-6731-4f23-b7e4-b2d84c4f0255",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P30109_F30109001/LevelGroup_P30109_F30109001_G1.json",
|
||||||
|
"Name": "DefaultData",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 1,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "254bdeba-37d7-43f6-8995-4df7f6d62f7d",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P30109_F30109001/LevelGroup_P30109_F30109001_G3.json",
|
||||||
|
"Name": "Contents",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 3,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"DefaultGroupIDList": [
|
||||||
|
1,
|
||||||
|
3
|
||||||
|
],
|
||||||
|
"UnlockMainMissionGroupIDList": [],
|
||||||
|
"EnviroProfile": "Stages/Outputs/Chapter01/EnviroProfile/Chap01_CloseView_ADV_Area_UnderCity_01_Day.enviroProfile.asset",
|
||||||
|
"StageData": "Stages/Outputs/Chapter01/Stages/Chap01_MAZ_M202_MainLine_01_StageData/Chap01_MAZ_M202_MainLine_01_StageData.stage",
|
||||||
|
"NavMesh": "Level/NavMesh/NavMesh-Floor_30109001.asset",
|
||||||
|
"MinimapVolume": null,
|
||||||
|
"CameraType": "Maze",
|
||||||
|
"MinimapVolumeData": {
|
||||||
|
"BackgroundMapSpriteInstance": null,
|
||||||
|
"Center": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Size": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Scale": 0.0,
|
||||||
|
"CompleteScale": 3.0,
|
||||||
|
"SectionVertices": null,
|
||||||
|
"Atlas": null,
|
||||||
|
"Sections": null,
|
||||||
|
"BackgroundMapSprite": null,
|
||||||
|
"CombineLayerAutomatic": false,
|
||||||
|
"Rotation": 0.0
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,82 @@
|
||||||
|
{
|
||||||
|
"FloorID": 30110001,
|
||||||
|
"FloorName": "FloorName_30110001",
|
||||||
|
"SceneName": null,
|
||||||
|
"StartGroupID": 1,
|
||||||
|
"StartAnchorID": 1,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"GroupList": [
|
||||||
|
{
|
||||||
|
"GroupGUID": "27dae968-df12-410f-8cf1-13a8c16c6626",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P30110_F30110001/LevelGroup_P30110_F30110001_G1.json",
|
||||||
|
"Name": "DefaultData",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 1,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "7693d0ed-5b27-406b-a743-ab9d58cc5539",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P30110_F30110001/LevelGroup_P30110_F30110001_G3.json",
|
||||||
|
"Name": "Contents",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 3,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "d7ff3b0f-494e-4444-bb80-4571a8e52aa6",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P30110_F30110001/LevelGroup_P30110_F30110001_G4.json",
|
||||||
|
"Name": "Props",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 4,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"DefaultGroupIDList": [
|
||||||
|
1,
|
||||||
|
3,
|
||||||
|
4
|
||||||
|
],
|
||||||
|
"UnlockMainMissionGroupIDList": [],
|
||||||
|
"EnviroProfile": "Stages/Outputs/Chapter01/EnviroProfile/Chap01_Maze_01.enviroProfile.asset",
|
||||||
|
"StageData": "Stages/Outputs/Chapter01/Stages/Chap01_MAZ_M101_MainLine_01_StageData/Chap01_MAZ_M101_MainLine_01_StageData.stage",
|
||||||
|
"NavMesh": "Level/NavMesh/NavMesh-Floor_30110001.asset",
|
||||||
|
"MinimapVolume": null,
|
||||||
|
"CameraType": "Maze",
|
||||||
|
"MinimapVolumeData": {
|
||||||
|
"BackgroundMapSpriteInstance": null,
|
||||||
|
"Center": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Size": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Scale": 0.0,
|
||||||
|
"CompleteScale": 3.0,
|
||||||
|
"SectionVertices": null,
|
||||||
|
"Atlas": null,
|
||||||
|
"Sections": null,
|
||||||
|
"BackgroundMapSprite": null,
|
||||||
|
"CombineLayerAutomatic": false,
|
||||||
|
"Rotation": 0.0
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,82 @@
|
||||||
|
{
|
||||||
|
"FloorID": 30111001,
|
||||||
|
"FloorName": "FloorName_30111001",
|
||||||
|
"SceneName": null,
|
||||||
|
"StartGroupID": 1,
|
||||||
|
"StartAnchorID": 1,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"GroupList": [
|
||||||
|
{
|
||||||
|
"GroupGUID": "ce5eaae3-b749-4212-864d-58f4c283ab28",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P30111_F30111001/LevelGroup_P30111_F30111001_G1.json",
|
||||||
|
"Name": "DefaultData",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 1,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "30316f21-ba60-4169-a34e-5e464774bbe0",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P30111_F30111001/LevelGroup_P30111_F30111001_G3.json",
|
||||||
|
"Name": "Contents",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 3,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "ca5946bd-40f7-491c-8f66-631677568c81",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P30111_F30111001/LevelGroup_P30111_F30111001_G4.json",
|
||||||
|
"Name": "Props",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 4,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"DefaultGroupIDList": [
|
||||||
|
1,
|
||||||
|
3,
|
||||||
|
4
|
||||||
|
],
|
||||||
|
"UnlockMainMissionGroupIDList": [],
|
||||||
|
"EnviroProfile": "Stages/Outputs/Chapter01/EnviroProfile/Chap01_Maze_01.enviroProfile.asset",
|
||||||
|
"StageData": "Stages/Outputs/Chapter01/Stages/Chap01_MAZ_M101_MainLine_01_StageData/Chap01_MAZ_M101_MainLine_01_StageData.stage",
|
||||||
|
"NavMesh": "Level/NavMesh/NavMesh-Floor_30111001.asset",
|
||||||
|
"MinimapVolume": null,
|
||||||
|
"CameraType": "Maze",
|
||||||
|
"MinimapVolumeData": {
|
||||||
|
"BackgroundMapSpriteInstance": null,
|
||||||
|
"Center": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Size": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Scale": 0.0,
|
||||||
|
"CompleteScale": 3.0,
|
||||||
|
"SectionVertices": null,
|
||||||
|
"Atlas": null,
|
||||||
|
"Sections": null,
|
||||||
|
"BackgroundMapSprite": null,
|
||||||
|
"CombineLayerAutomatic": false,
|
||||||
|
"Rotation": 0.0
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,69 @@
|
||||||
|
{
|
||||||
|
"FloorID": 30112001,
|
||||||
|
"FloorName": "FloorName_30112001",
|
||||||
|
"SceneName": null,
|
||||||
|
"StartGroupID": 1,
|
||||||
|
"StartAnchorID": 1,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"GroupList": [
|
||||||
|
{
|
||||||
|
"GroupGUID": "f9c380f2-e079-4180-8e65-c105322e6bdf",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P30112_F30112001/LevelGroup_P30112_F30112001_G1.json",
|
||||||
|
"Name": "DefaultData",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 1,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "cb23dbab-730b-4547-8151-4a8c6d54bc0c",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P30112_F30112001/LevelGroup_P30112_F30112001_G3.json",
|
||||||
|
"Name": "Contents",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 3,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"DefaultGroupIDList": [
|
||||||
|
1,
|
||||||
|
3
|
||||||
|
],
|
||||||
|
"UnlockMainMissionGroupIDList": [],
|
||||||
|
"EnviroProfile": "Stages/Outputs/Chapter01/EnviroProfile/Chap01_Maze_01.enviroProfile.asset",
|
||||||
|
"StageData": "Stages/Outputs/Chapter01/Stages/Chap01_MAZ_M301_MainLine_01_StageData/Chap01_MAZ_M301_MainLine_01_StageData.stage",
|
||||||
|
"NavMesh": "Level/NavMesh/NavMesh-Floor_30112001.asset",
|
||||||
|
"MinimapVolume": null,
|
||||||
|
"CameraType": "Maze",
|
||||||
|
"MinimapVolumeData": {
|
||||||
|
"BackgroundMapSpriteInstance": null,
|
||||||
|
"Center": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Size": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Scale": 0.0,
|
||||||
|
"CompleteScale": 3.0,
|
||||||
|
"SectionVertices": null,
|
||||||
|
"Atlas": null,
|
||||||
|
"Sections": null,
|
||||||
|
"BackgroundMapSprite": null,
|
||||||
|
"CombineLayerAutomatic": false,
|
||||||
|
"Rotation": 0.0
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,69 @@
|
||||||
|
{
|
||||||
|
"FloorID": 30113001,
|
||||||
|
"FloorName": "FloorName_30113001",
|
||||||
|
"SceneName": null,
|
||||||
|
"StartGroupID": 1,
|
||||||
|
"StartAnchorID": 1,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"GroupList": [
|
||||||
|
{
|
||||||
|
"GroupGUID": "d9fecc53-5127-4939-b291-951824518aa1",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P30113_F30113001/LevelGroup_P30113_F30113001_G1.json",
|
||||||
|
"Name": "DefaultData",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 1,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "8e268f76-11ea-41bb-a8a1-a430f12a9b33",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P30113_F30113001/LevelGroup_P30113_F30113001_G3.json",
|
||||||
|
"Name": "Contents",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 3,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"DefaultGroupIDList": [
|
||||||
|
1,
|
||||||
|
3
|
||||||
|
],
|
||||||
|
"UnlockMainMissionGroupIDList": [],
|
||||||
|
"EnviroProfile": "Stages/Outputs/Chapter01/EnviroProfile/Chap01_Maze_01.enviroProfile.asset",
|
||||||
|
"StageData": "Stages/Outputs/Chapter01/Stages/Chap01_MAZ_M301_MainLine_01_StageData/Chap01_MAZ_M301_MainLine_01_StageData.stage",
|
||||||
|
"NavMesh": "Level/NavMesh/NavMesh-Floor_30113001.asset",
|
||||||
|
"MinimapVolume": null,
|
||||||
|
"CameraType": "Maze",
|
||||||
|
"MinimapVolumeData": {
|
||||||
|
"BackgroundMapSpriteInstance": null,
|
||||||
|
"Center": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Size": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Scale": 0.0,
|
||||||
|
"CompleteScale": 3.0,
|
||||||
|
"SectionVertices": null,
|
||||||
|
"Atlas": null,
|
||||||
|
"Sections": null,
|
||||||
|
"BackgroundMapSprite": null,
|
||||||
|
"CombineLayerAutomatic": false,
|
||||||
|
"Rotation": 0.0
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,69 @@
|
||||||
|
{
|
||||||
|
"FloorID": 30114001,
|
||||||
|
"FloorName": "FloorName_30114001",
|
||||||
|
"SceneName": null,
|
||||||
|
"StartGroupID": 1,
|
||||||
|
"StartAnchorID": 1,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"GroupList": [
|
||||||
|
{
|
||||||
|
"GroupGUID": "04172a58-370c-48e8-8033-615c8e0905a2",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P30114_F30114001/LevelGroup_P30114_F30114001_G1.json",
|
||||||
|
"Name": "DefaultData",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 1,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "7c97bf81-6a38-4d5b-9edc-1166b8117fc2",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P30114_F30114001/LevelGroup_P30114_F30114001_G3.json",
|
||||||
|
"Name": "Contents",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 3,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"DefaultGroupIDList": [
|
||||||
|
1,
|
||||||
|
3
|
||||||
|
],
|
||||||
|
"UnlockMainMissionGroupIDList": [],
|
||||||
|
"EnviroProfile": "Stages/Outputs/Chapter01/EnviroProfile/Chap01_Maze_01.enviroProfile.asset",
|
||||||
|
"StageData": "Stages/Outputs/Chapter01/Stages/Chap01_MAZ_M302_MainLine_01_StageData/Chap01_MAZ_M302_MainLine_01_StageData.stage",
|
||||||
|
"NavMesh": "Level/NavMesh/NavMesh-Floor_30114001.asset",
|
||||||
|
"MinimapVolume": null,
|
||||||
|
"CameraType": "Maze",
|
||||||
|
"MinimapVolumeData": {
|
||||||
|
"BackgroundMapSpriteInstance": null,
|
||||||
|
"Center": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Size": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Scale": 0.0,
|
||||||
|
"CompleteScale": 3.0,
|
||||||
|
"SectionVertices": null,
|
||||||
|
"Atlas": null,
|
||||||
|
"Sections": null,
|
||||||
|
"BackgroundMapSprite": null,
|
||||||
|
"CombineLayerAutomatic": false,
|
||||||
|
"Rotation": 0.0
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,69 @@
|
||||||
|
{
|
||||||
|
"FloorID": 30115001,
|
||||||
|
"FloorName": "FloorName_30115001",
|
||||||
|
"SceneName": null,
|
||||||
|
"StartGroupID": 1,
|
||||||
|
"StartAnchorID": 1,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"GroupList": [
|
||||||
|
{
|
||||||
|
"GroupGUID": "22f93e5b-345f-4f77-a3d8-060c9939a814",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P30115_F30115001/LevelGroup_P30115_F30115001_G1.json",
|
||||||
|
"Name": "DefaultData",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 1,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "99a7dc21-a760-4e01-9433-d719ae03d9df",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P30115_F30115001/LevelGroup_P30115_F30115001_G3.json",
|
||||||
|
"Name": "Contents",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 3,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"DefaultGroupIDList": [
|
||||||
|
1,
|
||||||
|
3
|
||||||
|
],
|
||||||
|
"UnlockMainMissionGroupIDList": [],
|
||||||
|
"EnviroProfile": "Stages/Outputs/Chapter01/EnviroProfile/Chap01_Maze_01.enviroProfile.asset",
|
||||||
|
"StageData": "Stages/Outputs/Chapter01/Stages/Chap01_MAZ_M302_MainLine_01_StageData/Chap01_MAZ_M302_MainLine_01_StageData.stage",
|
||||||
|
"NavMesh": "Level/NavMesh/NavMesh-Floor_30115001.asset",
|
||||||
|
"MinimapVolume": null,
|
||||||
|
"CameraType": "Maze",
|
||||||
|
"MinimapVolumeData": {
|
||||||
|
"BackgroundMapSpriteInstance": null,
|
||||||
|
"Center": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Size": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Scale": 0.0,
|
||||||
|
"CompleteScale": 3.0,
|
||||||
|
"SectionVertices": null,
|
||||||
|
"Atlas": null,
|
||||||
|
"Sections": null,
|
||||||
|
"BackgroundMapSprite": null,
|
||||||
|
"CombineLayerAutomatic": false,
|
||||||
|
"Rotation": 0.0
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,69 @@
|
||||||
|
{
|
||||||
|
"FloorID": 30116001,
|
||||||
|
"FloorName": "MazeText_Empty",
|
||||||
|
"SceneName": null,
|
||||||
|
"StartGroupID": 1,
|
||||||
|
"StartAnchorID": 1,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"GroupList": [
|
||||||
|
{
|
||||||
|
"GroupGUID": "0e19e277-a247-49a1-a434-d9b89ceb066f",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P30116_F30116001/LevelGroup_P30116_F30116001_G1.json",
|
||||||
|
"Name": "DefaultData",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 1,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "6f52551c-7ac8-450e-834c-28c9f91bdc6d",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P30116_F30116001/LevelGroup_P30116_F30116001_G3.json",
|
||||||
|
"Name": "Contents",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 3,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"DefaultGroupIDList": [
|
||||||
|
1,
|
||||||
|
3
|
||||||
|
],
|
||||||
|
"UnlockMainMissionGroupIDList": [],
|
||||||
|
"EnviroProfile": "Stages/Outputs/Chapter01/EnviroProfile/Chap01_CloseView_ADV_Area_UnderCity_01_Day.enviroProfile.asset",
|
||||||
|
"StageData": "Stages/Outputs/Chapter01/Stages/Chap01_MAZ_M203_MainLine_01_StageData/Chap01_MAZ_M203_MainLine_01_StageData.stage",
|
||||||
|
"NavMesh": "Level/NavMesh/NavMesh-Floor_30116001.asset",
|
||||||
|
"MinimapVolume": null,
|
||||||
|
"CameraType": "Maze",
|
||||||
|
"MinimapVolumeData": {
|
||||||
|
"BackgroundMapSpriteInstance": null,
|
||||||
|
"Center": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Size": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Scale": 0.0,
|
||||||
|
"CompleteScale": 3.0,
|
||||||
|
"SectionVertices": null,
|
||||||
|
"Atlas": null,
|
||||||
|
"Sections": null,
|
||||||
|
"BackgroundMapSprite": null,
|
||||||
|
"CombineLayerAutomatic": false,
|
||||||
|
"Rotation": 0.0
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,69 @@
|
||||||
|
{
|
||||||
|
"FloorID": 30117001,
|
||||||
|
"FloorName": "MazeText_Empty",
|
||||||
|
"SceneName": null,
|
||||||
|
"StartGroupID": 1,
|
||||||
|
"StartAnchorID": 1,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"GroupList": [
|
||||||
|
{
|
||||||
|
"GroupGUID": "7288d5bd-b83d-4159-8bf8-326e98049e87",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P30117_F30117001/LevelGroup_P30117_F30117001_G1.json",
|
||||||
|
"Name": "DefaultData",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 1,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "edb37ffd-4f57-41ea-a2cc-d65759642208",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P30117_F30117001/LevelGroup_P30117_F30117001_G3.json",
|
||||||
|
"Name": "Contents",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 3,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"DefaultGroupIDList": [
|
||||||
|
1,
|
||||||
|
3
|
||||||
|
],
|
||||||
|
"UnlockMainMissionGroupIDList": [],
|
||||||
|
"EnviroProfile": "Stages/Outputs/Chapter01/EnviroProfile/Chap01_Maze_01.enviroProfile.asset",
|
||||||
|
"StageData": "Stages/Outputs/Chapter01/Stages/Chap01_MAZ_M302_MainLine_01_StageData/Chap01_MAZ_M302_MainLine_01_StageData.stage",
|
||||||
|
"NavMesh": "Level/NavMesh/NavMesh-Floor_30117001.asset",
|
||||||
|
"MinimapVolume": null,
|
||||||
|
"CameraType": "Maze",
|
||||||
|
"MinimapVolumeData": {
|
||||||
|
"BackgroundMapSpriteInstance": null,
|
||||||
|
"Center": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Size": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Scale": 0.0,
|
||||||
|
"CompleteScale": 3.0,
|
||||||
|
"SectionVertices": null,
|
||||||
|
"Atlas": null,
|
||||||
|
"Sections": null,
|
||||||
|
"BackgroundMapSprite": null,
|
||||||
|
"CombineLayerAutomatic": false,
|
||||||
|
"Rotation": 0.0
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,82 @@
|
||||||
|
{
|
||||||
|
"FloorID": 30118001,
|
||||||
|
"FloorName": "MazeText_Empty",
|
||||||
|
"SceneName": null,
|
||||||
|
"StartGroupID": 1,
|
||||||
|
"StartAnchorID": 1,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"GroupList": [
|
||||||
|
{
|
||||||
|
"GroupGUID": "8d60aaac-e9b0-4249-8d0c-09343e439df4",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P30118_F30118001/LevelGroup_P30118_F30118001_G1.json",
|
||||||
|
"Name": "DefaultData",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 1,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "25dc28f1-5dd7-4b1d-a575-8d3a883f9448",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P30118_F30118001/LevelGroup_P30118_F30118001_G3.json",
|
||||||
|
"Name": "Contents",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 3,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "007ad162-eb1c-4f74-bcd0-afdafe1159f7",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P30118_F30118001/LevelGroup_P30118_F30118001_G4.json",
|
||||||
|
"Name": "Door",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 4,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"DefaultGroupIDList": [
|
||||||
|
1,
|
||||||
|
3,
|
||||||
|
4
|
||||||
|
],
|
||||||
|
"UnlockMainMissionGroupIDList": [],
|
||||||
|
"EnviroProfile": "Stages/Outputs/Chapter01/EnviroProfile/Chap01_Maze_01.enviroProfile.asset",
|
||||||
|
"StageData": "Stages/Outputs/Chapter01/Stages/Chap01_MAZ_M301_MainLine_01_StageData/Chap01_MAZ_M301_MainLine_01_StageData.stage",
|
||||||
|
"NavMesh": "Level/NavMesh/NavMesh-Floor_30118001.asset",
|
||||||
|
"MinimapVolume": null,
|
||||||
|
"CameraType": "Maze",
|
||||||
|
"MinimapVolumeData": {
|
||||||
|
"BackgroundMapSpriteInstance": null,
|
||||||
|
"Center": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Size": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Scale": 0.0,
|
||||||
|
"CompleteScale": 3.0,
|
||||||
|
"SectionVertices": null,
|
||||||
|
"Atlas": null,
|
||||||
|
"Sections": null,
|
||||||
|
"BackgroundMapSprite": null,
|
||||||
|
"CombineLayerAutomatic": false,
|
||||||
|
"Rotation": 0.0
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,69 @@
|
||||||
|
{
|
||||||
|
"FloorID": 30119001,
|
||||||
|
"FloorName": "MazeText_Empty",
|
||||||
|
"SceneName": null,
|
||||||
|
"StartGroupID": 1,
|
||||||
|
"StartAnchorID": 1,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"GroupList": [
|
||||||
|
{
|
||||||
|
"GroupGUID": "e6572c5e-5842-4b40-8663-4044ea44066c",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P30119_F30119001/LevelGroup_P30119_F30119001_G1.json",
|
||||||
|
"Name": "DefaultData",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 1,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "7292c412-0dad-45db-af3d-89eb955e1166",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P30119_F30119001/LevelGroup_P30119_F30119001_G3.json",
|
||||||
|
"Name": "Contents",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 3,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"DefaultGroupIDList": [
|
||||||
|
1,
|
||||||
|
3
|
||||||
|
],
|
||||||
|
"UnlockMainMissionGroupIDList": [],
|
||||||
|
"EnviroProfile": "Stages/Outputs/Chapter01/EnviroProfile/Chap01_CloseView_ADV_Area_UnderCity_01_Day.enviroProfile.asset",
|
||||||
|
"StageData": "Stages/Outputs/Chapter01/Stages/Chap01_MAZ_M202_MainLine_01_StageData/Chap01_MAZ_M202_MainLine_01_StageData.stage",
|
||||||
|
"NavMesh": "Level/NavMesh/NavMesh-Floor_30119001.asset",
|
||||||
|
"MinimapVolume": null,
|
||||||
|
"CameraType": "Maze",
|
||||||
|
"MinimapVolumeData": {
|
||||||
|
"BackgroundMapSpriteInstance": null,
|
||||||
|
"Center": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Size": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Scale": 0.0,
|
||||||
|
"CompleteScale": 3.0,
|
||||||
|
"SectionVertices": null,
|
||||||
|
"Atlas": null,
|
||||||
|
"Sections": null,
|
||||||
|
"BackgroundMapSprite": null,
|
||||||
|
"CombineLayerAutomatic": false,
|
||||||
|
"Rotation": 0.0
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,69 @@
|
||||||
|
{
|
||||||
|
"FloorID": 30120001,
|
||||||
|
"FloorName": "MazeText_Empty",
|
||||||
|
"SceneName": null,
|
||||||
|
"StartGroupID": 1,
|
||||||
|
"StartAnchorID": 1,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"GroupList": [
|
||||||
|
{
|
||||||
|
"GroupGUID": "0abc5d0e-d95c-4516-85c9-469ca0d4d88c",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P30120_F30120001/LevelGroup_P30120_F30120001_G1.json",
|
||||||
|
"Name": "DefaultData",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 1,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "ad6402a7-dc03-4303-a443-a31762c19943",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P30120_F30120001/LevelGroup_P30120_F30120001_G3.json",
|
||||||
|
"Name": "Contents",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 3,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"DefaultGroupIDList": [
|
||||||
|
1,
|
||||||
|
3
|
||||||
|
],
|
||||||
|
"UnlockMainMissionGroupIDList": [],
|
||||||
|
"EnviroProfile": "Stages/Outputs/Chapter01/EnviroProfile/Chap01_Maze_01.enviroProfile.asset",
|
||||||
|
"StageData": "Stages/Outputs/Chapter01/Stages/Chap01_MAZ_M302_MainLine_01_StageData/Chap01_MAZ_M302_MainLine_01_StageData.stage",
|
||||||
|
"NavMesh": "Level/NavMesh/NavMesh-Floor_30120001.asset",
|
||||||
|
"MinimapVolume": null,
|
||||||
|
"CameraType": "Maze",
|
||||||
|
"MinimapVolumeData": {
|
||||||
|
"BackgroundMapSpriteInstance": null,
|
||||||
|
"Center": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Size": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Scale": 0.0,
|
||||||
|
"CompleteScale": 3.0,
|
||||||
|
"SectionVertices": null,
|
||||||
|
"Atlas": null,
|
||||||
|
"Sections": null,
|
||||||
|
"BackgroundMapSprite": null,
|
||||||
|
"CombineLayerAutomatic": false,
|
||||||
|
"Rotation": 0.0
|
||||||
|
}
|
||||||
|
}
|
230
RPG.GameCore/data/Config/LevelOutput/Floor/P90002_F90002.json
Normal file
230
RPG.GameCore/data/Config/LevelOutput/Floor/P90002_F90002.json
Normal file
|
@ -0,0 +1,230 @@
|
||||||
|
{
|
||||||
|
"FloorID": 90002,
|
||||||
|
"FloorName": "FloorName_90002",
|
||||||
|
"SceneName": null,
|
||||||
|
"StartGroupID": 1,
|
||||||
|
"StartAnchorID": 1,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"GroupList": [
|
||||||
|
{
|
||||||
|
"GroupGUID": "4188660f-5c1f-45e5-bf6c-6c53b1005dc7",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P90002_F90002/LevelGroup_P90002_F90002_G1.json",
|
||||||
|
"Name": "Model",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "TrainStage",
|
||||||
|
"ID": 1,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "4114fe6e-da79-4471-aaa3-0fd4e1459a3b",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P90002_F90002/LevelGroup_P90002_F90002_G3.json",
|
||||||
|
"Name": "Prop1",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "门和控制台",
|
||||||
|
"ID": 3,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "bc8f61d4-62e9-469d-a831-56b80bfc9272",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P90002_F90002/LevelGroup_P90002_F90002_G4.json",
|
||||||
|
"Name": "Prop2",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "宝箱",
|
||||||
|
"ID": 4,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "39c0f168-a8c1-4f6a-853e-06fbe498fa5e",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P90002_F90002/LevelGroup_P90002_F90002_G5.json",
|
||||||
|
"Name": "Prop3",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "瘫痪机器人",
|
||||||
|
"ID": 5,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "113de7bc-78b7-4a71-9214-0c7020ddffd1",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P90002_F90002/LevelGroup_P90002_F90002_G6.json",
|
||||||
|
"Name": "Prop4",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "可破坏物",
|
||||||
|
"ID": 6,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"DefaultGroupIDList": [
|
||||||
|
1,
|
||||||
|
3,
|
||||||
|
4,
|
||||||
|
5,
|
||||||
|
6
|
||||||
|
],
|
||||||
|
"UnlockMainMissionGroupIDList": [],
|
||||||
|
"EnviroProfile": "Stages/Outputs/Chapter01/EnviroProfile/Chap01_Maze_01.enviroProfile.asset",
|
||||||
|
"StageData": "Stages/Outputs/Chapter01/Stages/Chap01_MAZ_M301_MainLine_01_StageData/Chap01_MAZ_M301_MainLine_01_StageData.stage",
|
||||||
|
"NavMesh": "Level/NavMesh/NavMesh-Floor_90002.asset",
|
||||||
|
"MinimapVolume": null,
|
||||||
|
"CameraType": "Maze",
|
||||||
|
"MinimapVolumeData": {
|
||||||
|
"BackgroundMapSpriteInstance": null,
|
||||||
|
"Center": {
|
||||||
|
"x": -18.14235,
|
||||||
|
"y": 17.77002,
|
||||||
|
"z": -114.9622,
|
||||||
|
"normalized": {
|
||||||
|
"x": -0.154096484,
|
||||||
|
"y": 0.150934011,
|
||||||
|
"z": -0.9764595,
|
||||||
|
"normalized": {
|
||||||
|
"x": -0.1540965,
|
||||||
|
"y": 0.150934026,
|
||||||
|
"z": -0.976459563,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.00000012
|
||||||
|
},
|
||||||
|
"magnitude": 0.99999994,
|
||||||
|
"sqrMagnitude": 0.99999994
|
||||||
|
},
|
||||||
|
"magnitude": 117.7337,
|
||||||
|
"sqrMagnitude": 13861.2246
|
||||||
|
},
|
||||||
|
"Size": {
|
||||||
|
"x": 295.3605,
|
||||||
|
"y": 54.45174,
|
||||||
|
"z": 320.5264,
|
||||||
|
"normalized": {
|
||||||
|
"x": 0.672421038,
|
||||||
|
"y": 0.123965442,
|
||||||
|
"z": 0.729714,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.0
|
||||||
|
},
|
||||||
|
"magnitude": 439.249359,
|
||||||
|
"sqrMagnitude": 192940.0
|
||||||
|
},
|
||||||
|
"Scale": 1.0,
|
||||||
|
"CompleteScale": 3.0,
|
||||||
|
"SectionVertices": [
|
||||||
|
{
|
||||||
|
"x": -147.6803,
|
||||||
|
"y": 160.2632,
|
||||||
|
"normalized": {
|
||||||
|
"x": -0.6776481,
|
||||||
|
"y": 0.735386252,
|
||||||
|
"normalized": {
|
||||||
|
"x": -0.6776482,
|
||||||
|
"y": 0.7353863,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.0
|
||||||
|
},
|
||||||
|
"magnitude": 0.99999994,
|
||||||
|
"sqrMagnitude": 0.99999994
|
||||||
|
},
|
||||||
|
"magnitude": 217.930649,
|
||||||
|
"sqrMagnitude": 47493.7656
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 147.6803,
|
||||||
|
"y": 160.2632,
|
||||||
|
"normalized": {
|
||||||
|
"x": 0.6776481,
|
||||||
|
"y": 0.735386252,
|
||||||
|
"normalized": {
|
||||||
|
"x": 0.6776482,
|
||||||
|
"y": 0.7353863,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.0
|
||||||
|
},
|
||||||
|
"magnitude": 0.99999994,
|
||||||
|
"sqrMagnitude": 0.99999994
|
||||||
|
},
|
||||||
|
"magnitude": 217.930649,
|
||||||
|
"sqrMagnitude": 47493.7656
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 147.6803,
|
||||||
|
"y": -160.2632,
|
||||||
|
"normalized": {
|
||||||
|
"x": 0.6776481,
|
||||||
|
"y": -0.735386252,
|
||||||
|
"normalized": {
|
||||||
|
"x": 0.6776482,
|
||||||
|
"y": -0.7353863,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.0
|
||||||
|
},
|
||||||
|
"magnitude": 0.99999994,
|
||||||
|
"sqrMagnitude": 0.99999994
|
||||||
|
},
|
||||||
|
"magnitude": 217.930649,
|
||||||
|
"sqrMagnitude": 47493.7656
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": -147.6803,
|
||||||
|
"y": -160.2632,
|
||||||
|
"normalized": {
|
||||||
|
"x": -0.6776481,
|
||||||
|
"y": -0.735386252,
|
||||||
|
"normalized": {
|
||||||
|
"x": -0.6776482,
|
||||||
|
"y": -0.7353863,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.0
|
||||||
|
},
|
||||||
|
"magnitude": 0.99999994,
|
||||||
|
"sqrMagnitude": 0.99999994
|
||||||
|
},
|
||||||
|
"magnitude": 217.930649,
|
||||||
|
"sqrMagnitude": 47493.7656
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"Atlas": "SpriteOutput/MapPics/Minimap/Minimap_90002/SectionAtlas/MinimapSection_90002_Atlas.spriteatlas",
|
||||||
|
"Sections": [
|
||||||
|
{
|
||||||
|
"ID": 0,
|
||||||
|
"Sprite": "SpriteOutput/MapPics/Minimap/Minimap_90002/SectionAtlas/MinimapSection_90002_0.png",
|
||||||
|
"IsRect": true,
|
||||||
|
"Indices": [
|
||||||
|
3,
|
||||||
|
0,
|
||||||
|
1,
|
||||||
|
2
|
||||||
|
],
|
||||||
|
"UIPosition": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"InitialHidden": true,
|
||||||
|
"Type": "Normal",
|
||||||
|
"Center": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"GroupID": 0,
|
||||||
|
"PropID": 0
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"BackgroundMapSprite": "SpriteOutput/MapPics/Minimap/Minimap_90002/Background.png",
|
||||||
|
"CombineLayerAutomatic": false,
|
||||||
|
"Rotation": 0.0
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,96 @@
|
||||||
|
{
|
||||||
|
"FloorID": 9000201,
|
||||||
|
"FloorName": "FloorName_9000201",
|
||||||
|
"SceneName": null,
|
||||||
|
"StartGroupID": 2,
|
||||||
|
"StartAnchorID": 1,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"GroupList": [
|
||||||
|
{
|
||||||
|
"GroupGUID": "886ba2ac-1ae2-4911-9a13-4d7db508cfca",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P90002_F9000201/LevelGroup_P90002_F9000201_G2.json",
|
||||||
|
"Name": "New Group",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 2,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "93e73ada-2b6e-424b-9ce4-c8bb36d31997",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P90002_F9000201/LevelGroup_P90002_F9000201_G3.json",
|
||||||
|
"Name": "LiftGroup",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 3,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "9d80a802-f804-439b-964e-f2d9a6898ad4",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P90002_F9000201/LevelGroup_P90002_F9000201_G4.json",
|
||||||
|
"Name": "Door",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 4,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"DefaultGroupIDList": [
|
||||||
|
2,
|
||||||
|
3,
|
||||||
|
4
|
||||||
|
],
|
||||||
|
"UnlockMainMissionGroupIDList": [],
|
||||||
|
"EnviroProfile": "Stages/Outputs/Chapter01/EnviroProfile/Chap01_Maze_01.enviroProfile.asset",
|
||||||
|
"StageData": "Stages/Outputs/Chapter01/Stages/Chap01_MAZ_M201_MainLine_01_StageData/Chap01_MAZ_M201_MainLine_01_StageData.stage",
|
||||||
|
"NavMesh": "Level/NavMesh/NavMesh-Floor_9000201.asset",
|
||||||
|
"MinimapVolume": null,
|
||||||
|
"CameraType": "Base",
|
||||||
|
"MinimapVolumeData": {
|
||||||
|
"BackgroundMapSpriteInstance": null,
|
||||||
|
"Center": {
|
||||||
|
"x": -8.00695,
|
||||||
|
"y": 23.35259,
|
||||||
|
"z": 282.973,
|
||||||
|
"normalized": {
|
||||||
|
"x": -0.02818874,
|
||||||
|
"y": 0.08221359,
|
||||||
|
"z": 0.996216,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.0
|
||||||
|
},
|
||||||
|
"magnitude": 284.047821,
|
||||||
|
"sqrMagnitude": 80683.1641
|
||||||
|
},
|
||||||
|
"Size": {
|
||||||
|
"x": 211.5037,
|
||||||
|
"y": 128.7455,
|
||||||
|
"z": 938.637,
|
||||||
|
"normalized": {
|
||||||
|
"x": 0.217877388,
|
||||||
|
"y": 0.132625267,
|
||||||
|
"z": 0.966923,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.00000012
|
||||||
|
},
|
||||||
|
"magnitude": 970.7464,
|
||||||
|
"sqrMagnitude": 942348.6
|
||||||
|
},
|
||||||
|
"Scale": 1.0,
|
||||||
|
"CompleteScale": 3.0,
|
||||||
|
"SectionVertices": null,
|
||||||
|
"Atlas": null,
|
||||||
|
"Sections": null,
|
||||||
|
"BackgroundMapSprite": null,
|
||||||
|
"CombineLayerAutomatic": false,
|
||||||
|
"Rotation": 0.0
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,69 @@
|
||||||
|
{
|
||||||
|
"FloorID": 90201001,
|
||||||
|
"FloorName": "FloorName_90201001",
|
||||||
|
"SceneName": null,
|
||||||
|
"StartGroupID": 1,
|
||||||
|
"StartAnchorID": 1,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"GroupList": [
|
||||||
|
{
|
||||||
|
"GroupGUID": "c1cf1819-020d-4388-9d1c-e2063ae5f4bb",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P90201_F90201001/LevelGroup_P90201_F90201001_G1.json",
|
||||||
|
"Name": "DefaultGroup",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 1,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "542c70b6-7fe7-49be-a012-ad15af0305b6",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P90201_F90201001/LevelGroup_P90201_F90201001_G3.json",
|
||||||
|
"Name": "Contents",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 3,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"DefaultGroupIDList": [
|
||||||
|
1,
|
||||||
|
3
|
||||||
|
],
|
||||||
|
"UnlockMainMissionGroupIDList": null,
|
||||||
|
"EnviroProfile": "Stages/Outputs/Chapter01/EnviroProfile/Chap01_Maze_01.enviroProfile.asset",
|
||||||
|
"StageData": "Stages/Outputs/Chapter01/Stages/Chap01_MAZ_M101_MainLine_01_StageData/Chap01_MAZ_M101_MainLine_01_StageData.stage",
|
||||||
|
"NavMesh": "Level/NavMesh/NavMesh-Floor_90201001.asset",
|
||||||
|
"MinimapVolume": null,
|
||||||
|
"CameraType": "Maze",
|
||||||
|
"MinimapVolumeData": {
|
||||||
|
"BackgroundMapSpriteInstance": null,
|
||||||
|
"Center": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Size": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Scale": 0.0,
|
||||||
|
"CompleteScale": 3.0,
|
||||||
|
"SectionVertices": null,
|
||||||
|
"Atlas": null,
|
||||||
|
"Sections": null,
|
||||||
|
"BackgroundMapSprite": null,
|
||||||
|
"CombineLayerAutomatic": false,
|
||||||
|
"Rotation": 0.0
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,69 @@
|
||||||
|
{
|
||||||
|
"FloorID": 90201002,
|
||||||
|
"FloorName": "FloorName_90201002",
|
||||||
|
"SceneName": null,
|
||||||
|
"StartGroupID": 1,
|
||||||
|
"StartAnchorID": 1,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"GroupList": [
|
||||||
|
{
|
||||||
|
"GroupGUID": "5a5ac7c7-a438-4cc4-9de0-260a151510dd",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P90202_F90201002/LevelGroup_P90202_F90201002_G1.json",
|
||||||
|
"Name": "DefaultData",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 1,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "2001dc9c-1196-4e3a-b19e-f8ed35aba6c3",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P90202_F90201002/LevelGroup_P90202_F90201002_G3.json",
|
||||||
|
"Name": "Contents",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 3,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"DefaultGroupIDList": [
|
||||||
|
1,
|
||||||
|
3
|
||||||
|
],
|
||||||
|
"UnlockMainMissionGroupIDList": null,
|
||||||
|
"EnviroProfile": "Stages/Outputs/Chapter01/EnviroProfile/Chap01_Maze_01.enviroProfile.asset",
|
||||||
|
"StageData": "Stages/Outputs/Chapter01/Stages/Chap01_MAZ_M902_Challenge_01_StageData/Chap01_MAZ_M902_Challenge_01_StageData.stage",
|
||||||
|
"NavMesh": "Level/NavMesh/NavMesh-Floor_90201002.asset",
|
||||||
|
"MinimapVolume": null,
|
||||||
|
"CameraType": "Maze",
|
||||||
|
"MinimapVolumeData": {
|
||||||
|
"BackgroundMapSpriteInstance": null,
|
||||||
|
"Center": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Size": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Scale": 0.0,
|
||||||
|
"CompleteScale": 3.0,
|
||||||
|
"SectionVertices": null,
|
||||||
|
"Atlas": null,
|
||||||
|
"Sections": null,
|
||||||
|
"BackgroundMapSprite": null,
|
||||||
|
"CombineLayerAutomatic": false,
|
||||||
|
"Rotation": 0.0
|
||||||
|
}
|
||||||
|
}
|
134
RPG.GameCore/data/Config/LevelOutput/Floor/P90301_F90301001.json
Normal file
134
RPG.GameCore/data/Config/LevelOutput/Floor/P90301_F90301001.json
Normal file
|
@ -0,0 +1,134 @@
|
||||||
|
{
|
||||||
|
"FloorID": 90301001,
|
||||||
|
"FloorName": "FloorName_90301001",
|
||||||
|
"SceneName": null,
|
||||||
|
"StartGroupID": 2,
|
||||||
|
"StartAnchorID": 1,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"GroupList": [
|
||||||
|
{
|
||||||
|
"GroupGUID": "31a7d990-5966-4e7b-a68b-cc38412c1474",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P90301_F90301001/LevelGroup_P90301_F90301001_G2.json",
|
||||||
|
"Name": "Default",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 2,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "7fa7628d-6556-48c2-bf39-bbba062cfa41",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P90301_F90301001/LevelGroup_P90301_F90301001_G3.json",
|
||||||
|
"Name": "EliteMonster",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 3,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "5c1c4bbb-6774-4ef9-b92b-c61f7cba69b9",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P90301_F90301001/LevelGroup_P90301_F90301001_G4.json",
|
||||||
|
"Name": "BattleAreas",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 4,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "97cf3e8a-5526-4625-b5a6-f547d306437d",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P90301_F90301001/LevelGroup_P90301_F90301001_G5.json",
|
||||||
|
"Name": "PatrolMonster",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 5,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "fe40f8af-f097-4071-876b-3d76be291953",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P90301_F90301001/LevelGroup_P90301_F90301001_G6.json",
|
||||||
|
"Name": "Boss",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 6,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "7669f847-1605-4c56-a8b6-8ba071435450",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P90301_F90301001/LevelGroup_P90301_F90301001_G7.json",
|
||||||
|
"Name": "ElementPillar",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 7,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "7390eff2-cabe-412e-8229-05e187ee4326",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P90301_F90301001/LevelGroup_P90301_F90301001_G8.json",
|
||||||
|
"Name": "EnvirTrans",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 8,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"DefaultGroupIDList": [
|
||||||
|
2,
|
||||||
|
3,
|
||||||
|
4,
|
||||||
|
5,
|
||||||
|
6,
|
||||||
|
7,
|
||||||
|
8
|
||||||
|
],
|
||||||
|
"UnlockMainMissionGroupIDList": [],
|
||||||
|
"EnviroProfile": "Stages/Outputs/Chapter01/EnviroProfile/Chap01_CloseView_ADV_Area_Snowfield_01_Foggy.enviroProfile.asset",
|
||||||
|
"StageData": "Stages/Outputs/Chapter01/Stages/M1Challenge_Test/M1Challenge_Test.stage",
|
||||||
|
"NavMesh": "Level/NavMesh/NavMesh-Floor_90301001.asset",
|
||||||
|
"MinimapVolume": null,
|
||||||
|
"CameraType": "Base",
|
||||||
|
"MinimapVolumeData": {
|
||||||
|
"BackgroundMapSpriteInstance": null,
|
||||||
|
"Center": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Size": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Scale": 0.0,
|
||||||
|
"CompleteScale": 3.0,
|
||||||
|
"SectionVertices": null,
|
||||||
|
"Atlas": null,
|
||||||
|
"Sections": null,
|
||||||
|
"BackgroundMapSprite": null,
|
||||||
|
"CombineLayerAutomatic": false,
|
||||||
|
"Rotation": 0.0
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,56 @@
|
||||||
|
{
|
||||||
|
"FloorID": 99996001,
|
||||||
|
"FloorName": "FloorName_99996001",
|
||||||
|
"SceneName": null,
|
||||||
|
"StartGroupID": 2,
|
||||||
|
"StartAnchorID": 1,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"GroupList": [
|
||||||
|
{
|
||||||
|
"GroupGUID": "103c73ab-e20f-40a6-a720-438cc9813de8",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P99996_F99996001/LevelGroup_P99996_F99996001_G2.json",
|
||||||
|
"Name": "New Group",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 2,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"DefaultGroupIDList": [
|
||||||
|
2
|
||||||
|
],
|
||||||
|
"UnlockMainMissionGroupIDList": null,
|
||||||
|
"EnviroProfile": null,
|
||||||
|
"StageData": "Stages/Outputs/ChapterTA/Stages/ChapterTA_Stage_PerformanceTest0K/ChapterTA_Stage_PerformanceTest0K.stage",
|
||||||
|
"NavMesh": null,
|
||||||
|
"MinimapVolume": null,
|
||||||
|
"CameraType": "Base",
|
||||||
|
"MinimapVolumeData": {
|
||||||
|
"BackgroundMapSpriteInstance": null,
|
||||||
|
"Center": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Size": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Scale": 0.0,
|
||||||
|
"CompleteScale": 3.0,
|
||||||
|
"SectionVertices": null,
|
||||||
|
"Atlas": null,
|
||||||
|
"Sections": null,
|
||||||
|
"BackgroundMapSprite": null,
|
||||||
|
"CombineLayerAutomatic": false,
|
||||||
|
"Rotation": 0.0
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,56 @@
|
||||||
|
{
|
||||||
|
"FloorID": 99996002,
|
||||||
|
"FloorName": "FloorName_99996002",
|
||||||
|
"SceneName": null,
|
||||||
|
"StartGroupID": 2,
|
||||||
|
"StartAnchorID": 1,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"GroupList": [
|
||||||
|
{
|
||||||
|
"GroupGUID": "4c4e73b0-ba46-4832-a48a-695031258d46",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P99996_F99996002/LevelGroup_P99996_F99996002_G2.json",
|
||||||
|
"Name": "New Group",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 2,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"DefaultGroupIDList": [
|
||||||
|
2
|
||||||
|
],
|
||||||
|
"UnlockMainMissionGroupIDList": null,
|
||||||
|
"EnviroProfile": null,
|
||||||
|
"StageData": "Stages/Outputs/ChapterTA/Stages/ChapterTA_Stage_PerformanceTest100K/ChapterTA_Stage_PerformanceTest100K.stage",
|
||||||
|
"NavMesh": null,
|
||||||
|
"MinimapVolume": null,
|
||||||
|
"CameraType": "Base",
|
||||||
|
"MinimapVolumeData": {
|
||||||
|
"BackgroundMapSpriteInstance": null,
|
||||||
|
"Center": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Size": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Scale": 0.0,
|
||||||
|
"CompleteScale": 3.0,
|
||||||
|
"SectionVertices": null,
|
||||||
|
"Atlas": null,
|
||||||
|
"Sections": null,
|
||||||
|
"BackgroundMapSprite": null,
|
||||||
|
"CombineLayerAutomatic": false,
|
||||||
|
"Rotation": 0.0
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,56 @@
|
||||||
|
{
|
||||||
|
"FloorID": 99996003,
|
||||||
|
"FloorName": "FloorName_99996003",
|
||||||
|
"SceneName": null,
|
||||||
|
"StartGroupID": 2,
|
||||||
|
"StartAnchorID": 1,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"GroupList": [
|
||||||
|
{
|
||||||
|
"GroupGUID": "c7870260-be55-497e-a4cb-e88b62fd5ef5",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P99996_F99996003/LevelGroup_P99996_F99996003_G2.json",
|
||||||
|
"Name": "New Group",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 2,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"DefaultGroupIDList": [
|
||||||
|
2
|
||||||
|
],
|
||||||
|
"UnlockMainMissionGroupIDList": null,
|
||||||
|
"EnviroProfile": null,
|
||||||
|
"StageData": "Stages/Outputs/ChapterTA/Stages/ChapterTA_Stage_PerformanceTest200K/ChapterTA_Stage_PerformanceTest200K.stage",
|
||||||
|
"NavMesh": null,
|
||||||
|
"MinimapVolume": null,
|
||||||
|
"CameraType": "Base",
|
||||||
|
"MinimapVolumeData": {
|
||||||
|
"BackgroundMapSpriteInstance": null,
|
||||||
|
"Center": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Size": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Scale": 0.0,
|
||||||
|
"CompleteScale": 3.0,
|
||||||
|
"SectionVertices": null,
|
||||||
|
"Atlas": null,
|
||||||
|
"Sections": null,
|
||||||
|
"BackgroundMapSprite": null,
|
||||||
|
"CombineLayerAutomatic": false,
|
||||||
|
"Rotation": 0.0
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,56 @@
|
||||||
|
{
|
||||||
|
"FloorID": 99996004,
|
||||||
|
"FloorName": "FloorName_99996004",
|
||||||
|
"SceneName": null,
|
||||||
|
"StartGroupID": 2,
|
||||||
|
"StartAnchorID": 1,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"GroupList": [
|
||||||
|
{
|
||||||
|
"GroupGUID": "50f37cca-5171-4743-afb4-c2de384c8ead",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P99996_F99996004/LevelGroup_P99996_F99996004_G2.json",
|
||||||
|
"Name": "New Group",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 2,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"DefaultGroupIDList": [
|
||||||
|
2
|
||||||
|
],
|
||||||
|
"UnlockMainMissionGroupIDList": null,
|
||||||
|
"EnviroProfile": null,
|
||||||
|
"StageData": "Stages/Outputs/ChapterTA/Stages/ChapterTA_Stage_PerformanceTest300K/ChapterTA_Stage_PerformanceTest300K.stage",
|
||||||
|
"NavMesh": null,
|
||||||
|
"MinimapVolume": null,
|
||||||
|
"CameraType": "Base",
|
||||||
|
"MinimapVolumeData": {
|
||||||
|
"BackgroundMapSpriteInstance": null,
|
||||||
|
"Center": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Size": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Scale": 0.0,
|
||||||
|
"CompleteScale": 3.0,
|
||||||
|
"SectionVertices": null,
|
||||||
|
"Atlas": null,
|
||||||
|
"Sections": null,
|
||||||
|
"BackgroundMapSprite": null,
|
||||||
|
"CombineLayerAutomatic": false,
|
||||||
|
"Rotation": 0.0
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,56 @@
|
||||||
|
{
|
||||||
|
"FloorID": 99996005,
|
||||||
|
"FloorName": "FloorName_99996005",
|
||||||
|
"SceneName": null,
|
||||||
|
"StartGroupID": 2,
|
||||||
|
"StartAnchorID": 1,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"GroupList": [
|
||||||
|
{
|
||||||
|
"GroupGUID": "ad331754-e31e-44e5-92f3-e6a0b9a70755",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P99996_F99996005/LevelGroup_P99996_F99996005_G2.json",
|
||||||
|
"Name": "New Group",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 2,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"DefaultGroupIDList": [
|
||||||
|
2
|
||||||
|
],
|
||||||
|
"UnlockMainMissionGroupIDList": null,
|
||||||
|
"EnviroProfile": null,
|
||||||
|
"StageData": "Stages/Outputs/ChapterTA/Stages/ChapterTA_Stage_PerformanceTest400K/ChapterTA_Stage_PerformanceTest400K.stage",
|
||||||
|
"NavMesh": null,
|
||||||
|
"MinimapVolume": null,
|
||||||
|
"CameraType": "Base",
|
||||||
|
"MinimapVolumeData": {
|
||||||
|
"BackgroundMapSpriteInstance": null,
|
||||||
|
"Center": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Size": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Scale": 0.0,
|
||||||
|
"CompleteScale": 3.0,
|
||||||
|
"SectionVertices": null,
|
||||||
|
"Atlas": null,
|
||||||
|
"Sections": null,
|
||||||
|
"BackgroundMapSprite": null,
|
||||||
|
"CombineLayerAutomatic": false,
|
||||||
|
"Rotation": 0.0
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,56 @@
|
||||||
|
{
|
||||||
|
"FloorID": 99996006,
|
||||||
|
"FloorName": "FloorName_99996006",
|
||||||
|
"SceneName": null,
|
||||||
|
"StartGroupID": 2,
|
||||||
|
"StartAnchorID": 1,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"GroupList": [
|
||||||
|
{
|
||||||
|
"GroupGUID": "6c7c3138-c63e-4d3b-b620-65191dedcd5e",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P99996_F99996006/LevelGroup_P99996_F99996006_G2.json",
|
||||||
|
"Name": "New Group",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 2,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"DefaultGroupIDList": [
|
||||||
|
2
|
||||||
|
],
|
||||||
|
"UnlockMainMissionGroupIDList": null,
|
||||||
|
"EnviroProfile": null,
|
||||||
|
"StageData": "Stages/Outputs/ChapterTA/Stages/ChapterTA_Stage_PerformanceTest500K/ChapterTA_Stage_PerformanceTest500K.stage",
|
||||||
|
"NavMesh": null,
|
||||||
|
"MinimapVolume": null,
|
||||||
|
"CameraType": "Base",
|
||||||
|
"MinimapVolumeData": {
|
||||||
|
"BackgroundMapSpriteInstance": null,
|
||||||
|
"Center": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Size": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Scale": 0.0,
|
||||||
|
"CompleteScale": 3.0,
|
||||||
|
"SectionVertices": null,
|
||||||
|
"Atlas": null,
|
||||||
|
"Sections": null,
|
||||||
|
"BackgroundMapSprite": null,
|
||||||
|
"CombineLayerAutomatic": false,
|
||||||
|
"Rotation": 0.0
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,56 @@
|
||||||
|
{
|
||||||
|
"FloorID": 99996007,
|
||||||
|
"FloorName": "FloorName_99996007",
|
||||||
|
"SceneName": null,
|
||||||
|
"StartGroupID": 2,
|
||||||
|
"StartAnchorID": 1,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"GroupList": [
|
||||||
|
{
|
||||||
|
"GroupGUID": "17973864-fd45-493c-b186-cc3e9de3f0a2",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P99996_F99996007/LevelGroup_P99996_F99996007_G2.json",
|
||||||
|
"Name": "New Group",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 2,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"DefaultGroupIDList": [
|
||||||
|
2
|
||||||
|
],
|
||||||
|
"UnlockMainMissionGroupIDList": null,
|
||||||
|
"EnviroProfile": null,
|
||||||
|
"StageData": "Stages/Outputs/ChapterTA/Stages/ChapterTA_Stage_PerformanceTest750K/ChapterTA_Stage_PerformanceTest750K.stage",
|
||||||
|
"NavMesh": null,
|
||||||
|
"MinimapVolume": null,
|
||||||
|
"CameraType": "Base",
|
||||||
|
"MinimapVolumeData": {
|
||||||
|
"BackgroundMapSpriteInstance": null,
|
||||||
|
"Center": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Size": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Scale": 0.0,
|
||||||
|
"CompleteScale": 3.0,
|
||||||
|
"SectionVertices": null,
|
||||||
|
"Atlas": null,
|
||||||
|
"Sections": null,
|
||||||
|
"BackgroundMapSprite": null,
|
||||||
|
"CombineLayerAutomatic": false,
|
||||||
|
"Rotation": 0.0
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,56 @@
|
||||||
|
{
|
||||||
|
"FloorID": 99996008,
|
||||||
|
"FloorName": "FloorName_99996008",
|
||||||
|
"SceneName": null,
|
||||||
|
"StartGroupID": 2,
|
||||||
|
"StartAnchorID": 1,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"GroupList": [
|
||||||
|
{
|
||||||
|
"GroupGUID": "05ca108f-6cc3-4679-8162-3bbc9470dc59",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P99996_F99996008/LevelGroup_P99996_F99996008_G2.json",
|
||||||
|
"Name": "New Group",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 2,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"DefaultGroupIDList": [
|
||||||
|
2
|
||||||
|
],
|
||||||
|
"UnlockMainMissionGroupIDList": null,
|
||||||
|
"EnviroProfile": null,
|
||||||
|
"StageData": "Stages/Outputs/ChapterTA/Stages/ChapterTA_Stage_PerformanceTest1000K/ChapterTA_Stage_PerformanceTest1000K.stage",
|
||||||
|
"NavMesh": null,
|
||||||
|
"MinimapVolume": null,
|
||||||
|
"CameraType": "Base",
|
||||||
|
"MinimapVolumeData": {
|
||||||
|
"BackgroundMapSpriteInstance": null,
|
||||||
|
"Center": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Size": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Scale": 0.0,
|
||||||
|
"CompleteScale": 3.0,
|
||||||
|
"SectionVertices": null,
|
||||||
|
"Atlas": null,
|
||||||
|
"Sections": null,
|
||||||
|
"BackgroundMapSprite": null,
|
||||||
|
"CombineLayerAutomatic": false,
|
||||||
|
"Rotation": 0.0
|
||||||
|
}
|
||||||
|
}
|
332
RPG.GameCore/data/Config/LevelOutput/Floor/P99998_F99998.json
Normal file
332
RPG.GameCore/data/Config/LevelOutput/Floor/P99998_F99998.json
Normal file
|
@ -0,0 +1,332 @@
|
||||||
|
{
|
||||||
|
"FloorID": 99998,
|
||||||
|
"FloorName": "FloorName_99998",
|
||||||
|
"SceneName": null,
|
||||||
|
"StartGroupID": 2,
|
||||||
|
"StartAnchorID": 1,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"GroupList": [
|
||||||
|
{
|
||||||
|
"GroupGUID": "6c110578-c55f-4d7a-b3d3-be719915b62b",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P99998_F99998/LevelGroup_P99998_F99998_G2.json",
|
||||||
|
"Name": "Default",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 2,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "eae5a25c-6a2f-47fe-90f1-f77b308f0447",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P99998_F99998/LevelGroup_P99998_F99998_G3.json",
|
||||||
|
"Name": "Prop",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 3,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "996f80a7-55d8-4637-9262-e280dc0c097d",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P99998_F99998/LevelGroup_P99998_F99998_G4.json",
|
||||||
|
"Name": "Monster",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 4,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "3e20192e-6465-4576-a255-e06edba39f67",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P99998_F99998/LevelGroup_P99998_F99998_G11.json",
|
||||||
|
"Name": "RefreshGroupMonster",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "怪物组刷新测试【60s】",
|
||||||
|
"ID": 11,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "4fdecebd-1e55-4c1f-b624-d9f605ee7cb5",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P99998_F99998/LevelGroup_P99998_F99998_G12.json",
|
||||||
|
"Name": "RefreshGroupDeProp",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "可破坏物组刷新测试【60s】",
|
||||||
|
"ID": 12,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "80f84bd9-4aeb-4084-9941-8d9979de879a",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P99998_F99998/LevelGroup_P99998_F99998_G13.json",
|
||||||
|
"Name": "Permanent",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "永久存档测试",
|
||||||
|
"ID": 13,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "70cc3dd0-c182-461b-8faf-e00cfb8692bc",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P99998_F99998/LevelGroup_P99998_F99998_G5.json",
|
||||||
|
"Name": "Testlocked",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 5,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "34ed1050-7102-4d6c-8635-bd08525b3da3",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P99998_F99998/LevelGroup_P99998_F99998_G6.json",
|
||||||
|
"Name": "TestUnlocked",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 6,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "e97f2260-3f44-4051-919f-90553b6fe949",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P99998_F99998/LevelGroup_P99998_F99998_G7.json",
|
||||||
|
"Name": "TestKillGroupMonster",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 7,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "36c99bd2-8a85-4c8d-a3ca-cfafbeb8db02",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P99998_F99998/LevelGroup_P99998_F99998_G8.json",
|
||||||
|
"Name": "TestPropState",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 8,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "bd8598fd-49ff-4a2b-9ecb-06f830976692",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P99998_F99998/LevelGroup_P99998_F99998_G9.json",
|
||||||
|
"Name": "RandomMonster",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 9,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "b6330304-c768-48a0-8391-b8e35f6635ca",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P99998_F99998/LevelGroup_P99998_F99998_G10.json",
|
||||||
|
"Name": "Test_Talk",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 10,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "472b3158-0a2d-46d9-a51c-591f586742a7",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P99998_F99998/LevelGroup_P99998_F99998_G14.json",
|
||||||
|
"Name": "Test_Dialogue",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "DialogueGroup配置测试",
|
||||||
|
"ID": 14,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "8bd2bf8b-146a-4061-9082-b51198fd2edc",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P99998_F99998/LevelGroup_P99998_F99998_G15.json",
|
||||||
|
"Name": "Test_Cocoon",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "茧测试",
|
||||||
|
"ID": 15,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "401771ed-9fd7-4073-a646-0ab83561f878",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P99998_F99998/LevelGroup_P99998_F99998_G16.json",
|
||||||
|
"Name": "New Group",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 16,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "6febf7b6-6f9f-424f-ab04-adb1a07a7a0d",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P99998_F99998/LevelGroup_P99998_F99998_G17.json",
|
||||||
|
"Name": "10test",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "十字型10柱-lv2",
|
||||||
|
"ID": 17,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "023bce9d-65d4-450e-8e8f-c99ac7ea7f91",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P99998_F99998/LevelGroup_P99998_F99998_G18.json",
|
||||||
|
"Name": "10test_target",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "对应宝箱\\奖励",
|
||||||
|
"ID": 18,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "9bab3e18-8480-40e8-97e1-948a7f0557ba",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P99998_F99998/LevelGroup_P99998_F99998_G19.json",
|
||||||
|
"Name": "10Test2",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "五星10柱-lv4",
|
||||||
|
"ID": 19,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "87ce8714-d7f8-4fd9-8eff-1dcb7f5cdf78",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P99998_F99998/LevelGroup_P99998_F99998_G20.json",
|
||||||
|
"Name": "10test3",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "三点型10柱-lv1",
|
||||||
|
"ID": 20,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "2acb2494-d7f8-44b3-83e8-b022b6e9bbb8",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P99998_F99998/LevelGroup_P99998_F99998_G21.json",
|
||||||
|
"Name": "10test4",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "困难难度",
|
||||||
|
"ID": 21,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "1447ae5b-6371-429c-923e-277d9769fc45",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P99998_F99998/LevelGroup_P99998_F99998_G22.json",
|
||||||
|
"Name": "DailyTest",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 22,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "08c64cf4-c0d2-442c-92d7-e3d08ca547be",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P99998_F99998/LevelGroup_P99998_F99998_G23.json",
|
||||||
|
"Name": "NPC测试",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 23,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "3133f7a0-71f7-4df9-b58c-06b5e4e62c2e",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P99998_F99998/LevelGroup_P99998_F99998_G24.json",
|
||||||
|
"Name": "HitPillarTest",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "全开任务测试",
|
||||||
|
"ID": 24,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"DefaultGroupIDList": [
|
||||||
|
2,
|
||||||
|
3,
|
||||||
|
12,
|
||||||
|
13,
|
||||||
|
14,
|
||||||
|
15,
|
||||||
|
16,
|
||||||
|
17,
|
||||||
|
18,
|
||||||
|
19,
|
||||||
|
21,
|
||||||
|
22,
|
||||||
|
24
|
||||||
|
],
|
||||||
|
"UnlockMainMissionGroupIDList": [],
|
||||||
|
"EnviroProfile": null,
|
||||||
|
"StageData": "Stages/Outputs/Chapter01/Stages/MazeTest99998/MazeTest99998.stage",
|
||||||
|
"NavMesh": "Level/NavMesh/NavMesh-Floor_99998.asset",
|
||||||
|
"MinimapVolume": null,
|
||||||
|
"CameraType": "Maze",
|
||||||
|
"MinimapVolumeData": {
|
||||||
|
"BackgroundMapSpriteInstance": null,
|
||||||
|
"Center": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Size": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Scale": 0.0,
|
||||||
|
"CompleteScale": 3.0,
|
||||||
|
"SectionVertices": null,
|
||||||
|
"Atlas": null,
|
||||||
|
"Sections": null,
|
||||||
|
"BackgroundMapSprite": null,
|
||||||
|
"CombineLayerAutomatic": false,
|
||||||
|
"Rotation": 0.0
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,56 @@
|
||||||
|
{
|
||||||
|
"FloorID": 99998001,
|
||||||
|
"FloorName": "FloorName_99998001",
|
||||||
|
"SceneName": null,
|
||||||
|
"StartGroupID": 2,
|
||||||
|
"StartAnchorID": 1,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"GroupList": [
|
||||||
|
{
|
||||||
|
"GroupGUID": "36afbc2c-c84b-4825-8ccb-795f4bc0fa56",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P99998_F99998001/LevelGroup_P99998_F99998001_G2.json",
|
||||||
|
"Name": "DefaultData",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 2,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"DefaultGroupIDList": [
|
||||||
|
2
|
||||||
|
],
|
||||||
|
"UnlockMainMissionGroupIDList": [],
|
||||||
|
"EnviroProfile": "Stages/Outputs/Chapter01/EnviroProfile/Chap01_CloseView_ADV_Area_Snowfield_01_Foggy.enviroProfile.asset",
|
||||||
|
"StageData": "Stages/Outputs/Chapter01/Stages/MazeTest99998/MazeTest99998.stage",
|
||||||
|
"NavMesh": "Level/NavMesh/NavMesh-Floor_99998001.asset",
|
||||||
|
"MinimapVolume": null,
|
||||||
|
"CameraType": "Maze",
|
||||||
|
"MinimapVolumeData": {
|
||||||
|
"BackgroundMapSpriteInstance": null,
|
||||||
|
"Center": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Size": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Scale": 0.0,
|
||||||
|
"CompleteScale": 3.0,
|
||||||
|
"SectionVertices": null,
|
||||||
|
"Atlas": null,
|
||||||
|
"Sections": null,
|
||||||
|
"BackgroundMapSprite": null,
|
||||||
|
"CombineLayerAutomatic": false,
|
||||||
|
"Rotation": 0.0
|
||||||
|
}
|
||||||
|
}
|
116
RPG.GameCore/data/Config/LevelOutput/Floor/P99999_F99999001.json
Normal file
116
RPG.GameCore/data/Config/LevelOutput/Floor/P99999_F99999001.json
Normal file
|
@ -0,0 +1,116 @@
|
||||||
|
{
|
||||||
|
"FloorID": 99999001,
|
||||||
|
"FloorName": "FloorName_99999001",
|
||||||
|
"SceneName": null,
|
||||||
|
"StartGroupID": 2,
|
||||||
|
"StartAnchorID": 1,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"GroupList": [
|
||||||
|
{
|
||||||
|
"GroupGUID": "dc1fd437-10b3-4fff-b0dc-9908024b7bfa",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P99999_F99999001/LevelGroup_P99999_F99999001_G2.json",
|
||||||
|
"Name": "Group2",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 2,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "10efa69e-e371-4900-89ed-622e4eb40ce4",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P99999_F99999001/LevelGroup_P99999_F99999001_G3.json",
|
||||||
|
"Name": "mapdata",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 3,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "c912d0dc-6f0a-47d4-98f1-fee1e63227d1",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P99999_F99999001/LevelGroup_P99999_F99999001_G4.json",
|
||||||
|
"Name": "trigger",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 4,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"GroupGUID": "4bad7c1d-f1fa-4cc4-afd1-1587910bec52",
|
||||||
|
"GroupPath": "Config/LevelOutput/Group/Groups_P99999_F99999001/LevelGroup_P99999_F99999001_G5.json",
|
||||||
|
"Name": "NPC",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 5,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"DefaultGroupIDList": [
|
||||||
|
2,
|
||||||
|
3,
|
||||||
|
4,
|
||||||
|
5
|
||||||
|
],
|
||||||
|
"UnlockMainMissionGroupIDList": [],
|
||||||
|
"EnviroProfile": "Stages/Outputs/Chapter01/EnviroProfile/Chap01_Maze_01.enviroProfile.asset",
|
||||||
|
"StageData": "Stages/Outputs/Chapter01/Stages/Chap01_MAZ_M101_MainLine_01_StageData/Chap01_MAZ_M101_MainLine_01_StageData.stage",
|
||||||
|
"NavMesh": "Level/NavMesh/NavMesh-Floor_99999001.asset",
|
||||||
|
"MinimapVolume": null,
|
||||||
|
"CameraType": "Maze",
|
||||||
|
"MinimapVolumeData": {
|
||||||
|
"BackgroundMapSpriteInstance": null,
|
||||||
|
"Center": {
|
||||||
|
"x": -18.14235,
|
||||||
|
"y": 17.77002,
|
||||||
|
"z": -114.9622,
|
||||||
|
"normalized": {
|
||||||
|
"x": -0.154096484,
|
||||||
|
"y": 0.150934011,
|
||||||
|
"z": -0.9764595,
|
||||||
|
"normalized": {
|
||||||
|
"x": -0.1540965,
|
||||||
|
"y": 0.150934026,
|
||||||
|
"z": -0.976459563,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.00000012
|
||||||
|
},
|
||||||
|
"magnitude": 0.99999994,
|
||||||
|
"sqrMagnitude": 0.99999994
|
||||||
|
},
|
||||||
|
"magnitude": 117.7337,
|
||||||
|
"sqrMagnitude": 13861.2246
|
||||||
|
},
|
||||||
|
"Size": {
|
||||||
|
"x": 295.3605,
|
||||||
|
"y": 54.45174,
|
||||||
|
"z": 320.5264,
|
||||||
|
"normalized": {
|
||||||
|
"x": 0.672421038,
|
||||||
|
"y": 0.123965442,
|
||||||
|
"z": 0.729714,
|
||||||
|
"magnitude": 1.0,
|
||||||
|
"sqrMagnitude": 1.0
|
||||||
|
},
|
||||||
|
"magnitude": 439.249359,
|
||||||
|
"sqrMagnitude": 192940.0
|
||||||
|
},
|
||||||
|
"Scale": 3.0,
|
||||||
|
"CompleteScale": 3.0,
|
||||||
|
"SectionVertices": null,
|
||||||
|
"Atlas": null,
|
||||||
|
"Sections": null,
|
||||||
|
"BackgroundMapSprite": null,
|
||||||
|
"CombineLayerAutomatic": false,
|
||||||
|
"Rotation": 0.0
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,58 @@
|
||||||
|
{
|
||||||
|
"GroupGUID": "00a687db-2493-4dd9-88e6-a33475df5599",
|
||||||
|
"GroupName": "SubMission",
|
||||||
|
"ConfigPrefabPath": null,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"Model": null,
|
||||||
|
"AreaAnchorName": "LevelArea_P10000_F10000000_G10",
|
||||||
|
"SaveType": "Permanent",
|
||||||
|
"CheckClearMainMissionID": 0,
|
||||||
|
"UnlockMainMissionID": 0,
|
||||||
|
"AnchorList": [
|
||||||
|
{
|
||||||
|
"Name": "Anchor1",
|
||||||
|
"RotY": 318.4401,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 1,
|
||||||
|
"PosX": -3.361,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": -1.737,
|
||||||
|
"IsDelete": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ModelList": [],
|
||||||
|
"MonsterList": [],
|
||||||
|
"PropList": [],
|
||||||
|
"WaypointList": [],
|
||||||
|
"PathwayList": [],
|
||||||
|
"BattleAreaList": [],
|
||||||
|
"NPCList": [
|
||||||
|
{
|
||||||
|
"NPCID": 1000001,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"CreateOnInitial": false,
|
||||||
|
"ValueSource": null,
|
||||||
|
"CampID": 0,
|
||||||
|
"Trigger": null,
|
||||||
|
"AIConfig": null,
|
||||||
|
"RecordID": 0,
|
||||||
|
"EventID": 0,
|
||||||
|
"Stable": false,
|
||||||
|
"DialogueTriggerAngle": 120,
|
||||||
|
"DialogueGroups": [],
|
||||||
|
"ServerInteractVerificationIDList": [],
|
||||||
|
"DefaultIdleStateName": null,
|
||||||
|
"Name": "NPC1",
|
||||||
|
"RotY": 177.2246,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 400001,
|
||||||
|
"PosX": -3.328,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": -0.238,
|
||||||
|
"IsDelete": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"GroupRefreshID": 0,
|
||||||
|
"RandomNPCMonsterList": null,
|
||||||
|
"InitialRandomNPCMonsterIDList": null
|
||||||
|
}
|
|
@ -0,0 +1,230 @@
|
||||||
|
{
|
||||||
|
"GroupGUID": "2073c537-9c81-45aa-a916-e6ebd214eee4",
|
||||||
|
"GroupName": "Default",
|
||||||
|
"ConfigPrefabPath": null,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"Model": null,
|
||||||
|
"AreaAnchorName": "LevelArea_P10000_F10000000_G2",
|
||||||
|
"SaveType": "Permanent",
|
||||||
|
"CheckClearMainMissionID": 0,
|
||||||
|
"UnlockMainMissionID": 0,
|
||||||
|
"AnchorList": [
|
||||||
|
{
|
||||||
|
"Name": "PlayerStartPoint",
|
||||||
|
"RotY": 270.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 1,
|
||||||
|
"PosX": 0.93,
|
||||||
|
"PosY": 2E-06,
|
||||||
|
"PosZ": 0.13,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "Anchor2",
|
||||||
|
"RotY": 180.0,
|
||||||
|
"Comment": "锚点",
|
||||||
|
"ID": 2,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 20.02,
|
||||||
|
"IsDelete": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ModelList": [],
|
||||||
|
"MonsterList": [],
|
||||||
|
"PropList": [
|
||||||
|
{
|
||||||
|
"RotX": 0.0,
|
||||||
|
"RotZ": 0.0,
|
||||||
|
"PropID": 101,
|
||||||
|
"IsLimitedLife": false,
|
||||||
|
"LifeTime": 0.0,
|
||||||
|
"InitLevelGraph": null,
|
||||||
|
"Trigger": {
|
||||||
|
"Shape": "Sphere",
|
||||||
|
"Radius": 1.0,
|
||||||
|
"DimX": 1.0,
|
||||||
|
"DimY": 1.0,
|
||||||
|
"DimZ": 1.0,
|
||||||
|
"TargetCamps": [],
|
||||||
|
"TriggerTimes": 1,
|
||||||
|
"CD": 0.0,
|
||||||
|
"Offset": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Server": false
|
||||||
|
},
|
||||||
|
"CreateOnInitial": true,
|
||||||
|
"ValueSource": {
|
||||||
|
"Values": [],
|
||||||
|
"SharedValues": []
|
||||||
|
},
|
||||||
|
"CampID": 0,
|
||||||
|
"State": "CheckPointEnable",
|
||||||
|
"RecordID": 0,
|
||||||
|
"EventID": 0,
|
||||||
|
"AnchorGroupID": 2,
|
||||||
|
"AnchorID": 2,
|
||||||
|
"MapTeleportID": 1000001,
|
||||||
|
"ChestID": 0,
|
||||||
|
"DialogueTriggerAngle": 120,
|
||||||
|
"DialogueGroups": [],
|
||||||
|
"OverrideTriggerHint": false,
|
||||||
|
"HintRange": 0.0,
|
||||||
|
"ServerInteractVerificationIDList": [],
|
||||||
|
"StageObjectCapture": null,
|
||||||
|
"Name": "Prop2",
|
||||||
|
"RotY": 180.0,
|
||||||
|
"Comment": "锚点",
|
||||||
|
"ID": 300002,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 20.02,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"RotX": 0.0,
|
||||||
|
"RotZ": 0.0,
|
||||||
|
"PropID": 100,
|
||||||
|
"IsLimitedLife": false,
|
||||||
|
"LifeTime": 0.0,
|
||||||
|
"InitLevelGraph": null,
|
||||||
|
"Trigger": {
|
||||||
|
"Shape": "Box",
|
||||||
|
"Radius": 1.0,
|
||||||
|
"DimX": 5.0,
|
||||||
|
"DimY": 1.0,
|
||||||
|
"DimZ": 10.0,
|
||||||
|
"TargetCamps": [],
|
||||||
|
"TriggerTimes": 1,
|
||||||
|
"CD": 0.0,
|
||||||
|
"Offset": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Server": false
|
||||||
|
},
|
||||||
|
"CreateOnInitial": true,
|
||||||
|
"ValueSource": null,
|
||||||
|
"CampID": 0,
|
||||||
|
"State": "Closed",
|
||||||
|
"RecordID": 0,
|
||||||
|
"EventID": 0,
|
||||||
|
"AnchorGroupID": 0,
|
||||||
|
"AnchorID": 0,
|
||||||
|
"MapTeleportID": 0,
|
||||||
|
"ChestID": 0,
|
||||||
|
"DialogueTriggerAngle": 120,
|
||||||
|
"DialogueGroups": [],
|
||||||
|
"OverrideTriggerHint": false,
|
||||||
|
"HintRange": 0.0,
|
||||||
|
"ServerInteractVerificationIDList": [],
|
||||||
|
"StageObjectCapture": null,
|
||||||
|
"Name": "Prop3",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "起始任务触发",
|
||||||
|
"ID": 300003,
|
||||||
|
"PosX": 2.447,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.559,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"RotX": 0.0,
|
||||||
|
"RotZ": 0.0,
|
||||||
|
"PropID": 100,
|
||||||
|
"IsLimitedLife": false,
|
||||||
|
"LifeTime": 0.0,
|
||||||
|
"InitLevelGraph": null,
|
||||||
|
"Trigger": {
|
||||||
|
"Shape": "Box",
|
||||||
|
"Radius": 1.0,
|
||||||
|
"DimX": 18.0,
|
||||||
|
"DimY": 1.0,
|
||||||
|
"DimZ": 4.0,
|
||||||
|
"TargetCamps": [],
|
||||||
|
"TriggerTimes": 1,
|
||||||
|
"CD": 0.0,
|
||||||
|
"Offset": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Server": false
|
||||||
|
},
|
||||||
|
"CreateOnInitial": true,
|
||||||
|
"ValueSource": null,
|
||||||
|
"CampID": 0,
|
||||||
|
"State": "Closed",
|
||||||
|
"RecordID": 0,
|
||||||
|
"EventID": 0,
|
||||||
|
"AnchorGroupID": 0,
|
||||||
|
"AnchorID": 0,
|
||||||
|
"MapTeleportID": 0,
|
||||||
|
"ChestID": 0,
|
||||||
|
"DialogueTriggerAngle": 120,
|
||||||
|
"DialogueGroups": [],
|
||||||
|
"OverrideTriggerHint": false,
|
||||||
|
"HintRange": 0.0,
|
||||||
|
"ServerInteractVerificationIDList": [],
|
||||||
|
"StageObjectCapture": null,
|
||||||
|
"Name": "Prop4",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "姬子对话",
|
||||||
|
"ID": 300004,
|
||||||
|
"PosX": -0.49,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": -8.76,
|
||||||
|
"IsDelete": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"RotX": 0.0,
|
||||||
|
"RotZ": 0.0,
|
||||||
|
"PropID": 100,
|
||||||
|
"IsLimitedLife": false,
|
||||||
|
"LifeTime": 0.0,
|
||||||
|
"InitLevelGraph": "Config/Level/Maze/Chapter01/Town/Town_Chapter01_ActivateSaveData.json",
|
||||||
|
"Trigger": null,
|
||||||
|
"CreateOnInitial": true,
|
||||||
|
"ValueSource": null,
|
||||||
|
"CampID": 0,
|
||||||
|
"State": "Closed",
|
||||||
|
"RecordID": 0,
|
||||||
|
"EventID": 0,
|
||||||
|
"AnchorGroupID": 0,
|
||||||
|
"AnchorID": 0,
|
||||||
|
"MapTeleportID": 0,
|
||||||
|
"ChestID": 0,
|
||||||
|
"DialogueTriggerAngle": 120,
|
||||||
|
"DialogueGroups": [],
|
||||||
|
"OverrideTriggerHint": false,
|
||||||
|
"HintRange": 0.0,
|
||||||
|
"ServerInteractVerificationIDList": [],
|
||||||
|
"StageObjectCapture": null,
|
||||||
|
"Name": "Prop1",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "触发存档",
|
||||||
|
"ID": 300001,
|
||||||
|
"PosX": 0.0,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 0.0,
|
||||||
|
"IsDelete": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"WaypointList": [],
|
||||||
|
"PathwayList": [],
|
||||||
|
"BattleAreaList": [],
|
||||||
|
"NPCList": [],
|
||||||
|
"GroupRefreshID": 1,
|
||||||
|
"RandomNPCMonsterList": null,
|
||||||
|
"InitialRandomNPCMonsterIDList": null
|
||||||
|
}
|
|
@ -0,0 +1,132 @@
|
||||||
|
{
|
||||||
|
"GroupGUID": "66189ad6-0296-429a-9e87-96b45e7e4466",
|
||||||
|
"GroupName": "NPCs",
|
||||||
|
"ConfigPrefabPath": null,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"Model": null,
|
||||||
|
"AreaAnchorName": "LevelArea_P10000_F10000000_G3",
|
||||||
|
"SaveType": "Permanent",
|
||||||
|
"CheckClearMainMissionID": 0,
|
||||||
|
"UnlockMainMissionID": 0,
|
||||||
|
"AnchorList": [
|
||||||
|
{
|
||||||
|
"Name": "TalktoPam",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 1,
|
||||||
|
"PosX": -1.49,
|
||||||
|
"PosY": -1E-06,
|
||||||
|
"PosZ": 2.14,
|
||||||
|
"IsDelete": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ModelList": [],
|
||||||
|
"MonsterList": [],
|
||||||
|
"PropList": [],
|
||||||
|
"WaypointList": [],
|
||||||
|
"PathwayList": [],
|
||||||
|
"BattleAreaList": [],
|
||||||
|
"NPCList": [
|
||||||
|
{
|
||||||
|
"NPCID": 1000001,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"CreateOnInitial": true,
|
||||||
|
"ValueSource": null,
|
||||||
|
"CampID": 0,
|
||||||
|
"Trigger": {
|
||||||
|
"Shape": "Sphere",
|
||||||
|
"Radius": 3.0,
|
||||||
|
"DimX": 1.0,
|
||||||
|
"DimY": 1.0,
|
||||||
|
"DimZ": 1.0,
|
||||||
|
"TargetCamps": [],
|
||||||
|
"TriggerTimes": -1,
|
||||||
|
"CD": 0.0,
|
||||||
|
"Offset": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Server": true
|
||||||
|
},
|
||||||
|
"AIConfig": {
|
||||||
|
"AIFile": null,
|
||||||
|
"PathwayList": [],
|
||||||
|
"DefaultAIPathwayIndex": 0
|
||||||
|
},
|
||||||
|
"RecordID": 0,
|
||||||
|
"EventID": 0,
|
||||||
|
"Stable": false,
|
||||||
|
"DialogueTriggerAngle": 120,
|
||||||
|
"DialogueGroups": [],
|
||||||
|
"ServerInteractVerificationIDList": [
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
3,
|
||||||
|
4
|
||||||
|
],
|
||||||
|
"DefaultIdleStateName": null,
|
||||||
|
"Name": "NPC1",
|
||||||
|
"RotY": 180.0,
|
||||||
|
"Comment": "帕姆",
|
||||||
|
"ID": 400001,
|
||||||
|
"PosX": -1.38,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 3.16,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"NPCID": 1000004,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"CreateOnInitial": true,
|
||||||
|
"ValueSource": null,
|
||||||
|
"CampID": 0,
|
||||||
|
"Trigger": null,
|
||||||
|
"AIConfig": null,
|
||||||
|
"RecordID": 0,
|
||||||
|
"EventID": 0,
|
||||||
|
"Stable": false,
|
||||||
|
"DialogueTriggerAngle": 120,
|
||||||
|
"DialogueGroups": [],
|
||||||
|
"ServerInteractVerificationIDList": [],
|
||||||
|
"DefaultIdleStateName": null,
|
||||||
|
"Name": "NPC2",
|
||||||
|
"RotY": 240.1102,
|
||||||
|
"Comment": "姬子",
|
||||||
|
"ID": 400002,
|
||||||
|
"PosX": 3.312,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 2.848,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"NPCID": 1000005,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"CreateOnInitial": true,
|
||||||
|
"ValueSource": null,
|
||||||
|
"CampID": 0,
|
||||||
|
"Trigger": null,
|
||||||
|
"AIConfig": null,
|
||||||
|
"RecordID": 0,
|
||||||
|
"EventID": 0,
|
||||||
|
"Stable": false,
|
||||||
|
"DialogueTriggerAngle": 120,
|
||||||
|
"DialogueGroups": [],
|
||||||
|
"ServerInteractVerificationIDList": [],
|
||||||
|
"DefaultIdleStateName": null,
|
||||||
|
"Name": "NPC3",
|
||||||
|
"RotY": 69.62791,
|
||||||
|
"Comment": "瓦尔特",
|
||||||
|
"ID": 400003,
|
||||||
|
"PosX": -4.42,
|
||||||
|
"PosY": 0.021,
|
||||||
|
"PosZ": -1.101,
|
||||||
|
"IsDelete": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"GroupRefreshID": 1,
|
||||||
|
"RandomNPCMonsterList": null,
|
||||||
|
"InitialRandomNPCMonsterIDList": null
|
||||||
|
}
|
|
@ -0,0 +1,252 @@
|
||||||
|
{
|
||||||
|
"GroupGUID": "4331f17b-cb3e-4911-9276-fb7ca7e6070a",
|
||||||
|
"GroupName": "1000001",
|
||||||
|
"ConfigPrefabPath": null,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"Model": null,
|
||||||
|
"AreaAnchorName": "LevelArea_P10000_F10000000_G4",
|
||||||
|
"SaveType": "Permanent",
|
||||||
|
"CheckClearMainMissionID": 0,
|
||||||
|
"UnlockMainMissionID": 0,
|
||||||
|
"AnchorList": [],
|
||||||
|
"ModelList": [],
|
||||||
|
"MonsterList": [],
|
||||||
|
"PropList": [
|
||||||
|
{
|
||||||
|
"RotX": 0.0,
|
||||||
|
"RotZ": 0.0,
|
||||||
|
"PropID": 106,
|
||||||
|
"IsLimitedLife": false,
|
||||||
|
"LifeTime": 0.0,
|
||||||
|
"InitLevelGraph": "Config/Level/Mission/1000001/Drop/Drop_100000101.json",
|
||||||
|
"Trigger": {
|
||||||
|
"Shape": "Sphere",
|
||||||
|
"Radius": 2.0,
|
||||||
|
"DimX": 1.0,
|
||||||
|
"DimY": 1.0,
|
||||||
|
"DimZ": 1.0,
|
||||||
|
"TargetCamps": [],
|
||||||
|
"TriggerTimes": 1,
|
||||||
|
"CD": 0.0,
|
||||||
|
"Offset": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Server": false
|
||||||
|
},
|
||||||
|
"CreateOnInitial": false,
|
||||||
|
"ValueSource": null,
|
||||||
|
"CampID": 0,
|
||||||
|
"State": "Closed",
|
||||||
|
"RecordID": 0,
|
||||||
|
"EventID": 0,
|
||||||
|
"AnchorGroupID": 0,
|
||||||
|
"AnchorID": 0,
|
||||||
|
"MapTeleportID": 0,
|
||||||
|
"ChestID": 0,
|
||||||
|
"DialogueTriggerAngle": 120,
|
||||||
|
"DialogueGroups": [
|
||||||
|
1000026
|
||||||
|
],
|
||||||
|
"OverrideTriggerHint": false,
|
||||||
|
"HintRange": 0.0,
|
||||||
|
"ServerInteractVerificationIDList": [],
|
||||||
|
"StageObjectCapture": null,
|
||||||
|
"Name": "Prop1",
|
||||||
|
"RotY": 270.0,
|
||||||
|
"Comment": "座位",
|
||||||
|
"ID": 300001,
|
||||||
|
"PosX": 4.977,
|
||||||
|
"PosY": 0.572,
|
||||||
|
"PosZ": 0.38,
|
||||||
|
"IsDelete": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"WaypointList": [],
|
||||||
|
"PathwayList": [],
|
||||||
|
"BattleAreaList": [],
|
||||||
|
"NPCList": [
|
||||||
|
{
|
||||||
|
"NPCID": 1000002,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"CreateOnInitial": true,
|
||||||
|
"ValueSource": null,
|
||||||
|
"CampID": 0,
|
||||||
|
"Trigger": null,
|
||||||
|
"AIConfig": {
|
||||||
|
"AIFile": null,
|
||||||
|
"PathwayList": [],
|
||||||
|
"DefaultAIPathwayIndex": 0
|
||||||
|
},
|
||||||
|
"RecordID": 0,
|
||||||
|
"EventID": 0,
|
||||||
|
"Stable": false,
|
||||||
|
"DialogueTriggerAngle": 120,
|
||||||
|
"DialogueGroups": [
|
||||||
|
1000001,
|
||||||
|
1000005
|
||||||
|
],
|
||||||
|
"ServerInteractVerificationIDList": [],
|
||||||
|
"DefaultIdleStateName": null,
|
||||||
|
"Name": "NPC1",
|
||||||
|
"RotY": 235.1,
|
||||||
|
"Comment": "三月七",
|
||||||
|
"ID": 400001,
|
||||||
|
"PosX": 1.936,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": 4.197,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"NPCID": 1000003,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"CreateOnInitial": false,
|
||||||
|
"ValueSource": null,
|
||||||
|
"CampID": 0,
|
||||||
|
"Trigger": null,
|
||||||
|
"AIConfig": {
|
||||||
|
"AIFile": null,
|
||||||
|
"PathwayList": [],
|
||||||
|
"DefaultAIPathwayIndex": 0
|
||||||
|
},
|
||||||
|
"RecordID": 0,
|
||||||
|
"EventID": 0,
|
||||||
|
"Stable": false,
|
||||||
|
"DialogueTriggerAngle": 120,
|
||||||
|
"DialogueGroups": [
|
||||||
|
1000002,
|
||||||
|
1000006
|
||||||
|
],
|
||||||
|
"ServerInteractVerificationIDList": [],
|
||||||
|
"DefaultIdleStateName": null,
|
||||||
|
"Name": "NPC2",
|
||||||
|
"RotY": 199.8074,
|
||||||
|
"Comment": "丹恒",
|
||||||
|
"ID": 400002,
|
||||||
|
"PosX": 1.7,
|
||||||
|
"PosY": -4E-06,
|
||||||
|
"PosZ": 26.47,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"NPCID": 1000004,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"CreateOnInitial": true,
|
||||||
|
"ValueSource": null,
|
||||||
|
"CampID": 0,
|
||||||
|
"Trigger": null,
|
||||||
|
"AIConfig": {
|
||||||
|
"AIFile": null,
|
||||||
|
"PathwayList": [],
|
||||||
|
"DefaultAIPathwayIndex": 0
|
||||||
|
},
|
||||||
|
"RecordID": 0,
|
||||||
|
"EventID": 0,
|
||||||
|
"Stable": false,
|
||||||
|
"DialogueTriggerAngle": 120,
|
||||||
|
"DialogueGroups": [
|
||||||
|
1000003,
|
||||||
|
1000007
|
||||||
|
],
|
||||||
|
"ServerInteractVerificationIDList": [],
|
||||||
|
"DefaultIdleStateName": null,
|
||||||
|
"Name": "NPC3",
|
||||||
|
"RotY": 292.6837,
|
||||||
|
"Comment": "姬子",
|
||||||
|
"ID": 400003,
|
||||||
|
"PosX": 3.81,
|
||||||
|
"PosY": -1E-06,
|
||||||
|
"PosZ": 10.48,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"NPCID": 1000005,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"CreateOnInitial": true,
|
||||||
|
"ValueSource": null,
|
||||||
|
"CampID": 0,
|
||||||
|
"Trigger": null,
|
||||||
|
"AIConfig": {
|
||||||
|
"AIFile": null,
|
||||||
|
"PathwayList": [],
|
||||||
|
"DefaultAIPathwayIndex": 0
|
||||||
|
},
|
||||||
|
"RecordID": 0,
|
||||||
|
"EventID": 0,
|
||||||
|
"Stable": false,
|
||||||
|
"DialogueTriggerAngle": 120,
|
||||||
|
"DialogueGroups": [
|
||||||
|
1000004,
|
||||||
|
1000008
|
||||||
|
],
|
||||||
|
"ServerInteractVerificationIDList": [],
|
||||||
|
"DefaultIdleStateName": null,
|
||||||
|
"Name": "NPC4",
|
||||||
|
"RotY": 126.3587,
|
||||||
|
"Comment": "杨",
|
||||||
|
"ID": 400004,
|
||||||
|
"PosX": -3.42,
|
||||||
|
"PosY": -2E-06,
|
||||||
|
"PosZ": 10.31,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"NPCID": 1000006,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"CreateOnInitial": true,
|
||||||
|
"ValueSource": null,
|
||||||
|
"CampID": 0,
|
||||||
|
"Trigger": {
|
||||||
|
"Shape": "Sphere",
|
||||||
|
"Radius": 3.0,
|
||||||
|
"DimX": 1.0,
|
||||||
|
"DimY": 1.0,
|
||||||
|
"DimZ": 1.0,
|
||||||
|
"TargetCamps": [],
|
||||||
|
"TriggerTimes": -1,
|
||||||
|
"CD": 0.0,
|
||||||
|
"Offset": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Server": true
|
||||||
|
},
|
||||||
|
"AIConfig": {
|
||||||
|
"AIFile": null,
|
||||||
|
"PathwayList": [],
|
||||||
|
"DefaultAIPathwayIndex": 0
|
||||||
|
},
|
||||||
|
"RecordID": 0,
|
||||||
|
"EventID": 0,
|
||||||
|
"Stable": false,
|
||||||
|
"DialogueTriggerAngle": 120,
|
||||||
|
"DialogueGroups": [
|
||||||
|
1000009
|
||||||
|
],
|
||||||
|
"ServerInteractVerificationIDList": [
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
3,
|
||||||
|
4
|
||||||
|
],
|
||||||
|
"DefaultIdleStateName": null,
|
||||||
|
"Name": "NPC5",
|
||||||
|
"RotY": 330.7518,
|
||||||
|
"Comment": "帕姆",
|
||||||
|
"ID": 400005,
|
||||||
|
"PosX": 1.8,
|
||||||
|
"PosY": 1E-06,
|
||||||
|
"PosZ": -4.75,
|
||||||
|
"IsDelete": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"GroupRefreshID": 1,
|
||||||
|
"RandomNPCMonsterList": null,
|
||||||
|
"InitialRandomNPCMonsterIDList": null
|
||||||
|
}
|
|
@ -0,0 +1,248 @@
|
||||||
|
{
|
||||||
|
"GroupGUID": "18764f7d-2db5-47c8-aa96-25659cdfef60",
|
||||||
|
"GroupName": "1000002",
|
||||||
|
"ConfigPrefabPath": null,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"Model": null,
|
||||||
|
"AreaAnchorName": "LevelArea_P10000_F10000000_G5",
|
||||||
|
"SaveType": "Temporary",
|
||||||
|
"CheckClearMainMissionID": 0,
|
||||||
|
"UnlockMainMissionID": 0,
|
||||||
|
"AnchorList": [],
|
||||||
|
"ModelList": [],
|
||||||
|
"MonsterList": [],
|
||||||
|
"PropList": [
|
||||||
|
{
|
||||||
|
"RotX": 0.0,
|
||||||
|
"RotZ": 0.0,
|
||||||
|
"PropID": 100,
|
||||||
|
"IsLimitedLife": false,
|
||||||
|
"LifeTime": 0.0,
|
||||||
|
"InitLevelGraph": null,
|
||||||
|
"Trigger": {
|
||||||
|
"Shape": "Box",
|
||||||
|
"Radius": 1.0,
|
||||||
|
"DimX": 18.0,
|
||||||
|
"DimY": 1.0,
|
||||||
|
"DimZ": 4.0,
|
||||||
|
"TargetCamps": [],
|
||||||
|
"TriggerTimes": 1,
|
||||||
|
"CD": 0.0,
|
||||||
|
"Offset": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Server": false
|
||||||
|
},
|
||||||
|
"CreateOnInitial": false,
|
||||||
|
"ValueSource": null,
|
||||||
|
"CampID": 0,
|
||||||
|
"State": "Closed",
|
||||||
|
"RecordID": 0,
|
||||||
|
"EventID": 0,
|
||||||
|
"AnchorGroupID": 0,
|
||||||
|
"AnchorID": 0,
|
||||||
|
"MapTeleportID": 0,
|
||||||
|
"ChestID": 0,
|
||||||
|
"DialogueTriggerAngle": 120,
|
||||||
|
"DialogueGroups": [],
|
||||||
|
"OverrideTriggerHint": false,
|
||||||
|
"HintRange": 0.0,
|
||||||
|
"ServerInteractVerificationIDList": [],
|
||||||
|
"StageObjectCapture": null,
|
||||||
|
"Name": "Prop1",
|
||||||
|
"RotY": 0.0,
|
||||||
|
"Comment": "姬子对话",
|
||||||
|
"ID": 300001,
|
||||||
|
"PosX": -0.22,
|
||||||
|
"PosY": 0.0,
|
||||||
|
"PosZ": -8.75,
|
||||||
|
"IsDelete": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"WaypointList": [],
|
||||||
|
"PathwayList": [],
|
||||||
|
"BattleAreaList": [],
|
||||||
|
"NPCList": [
|
||||||
|
{
|
||||||
|
"NPCID": 1000008,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"CreateOnInitial": true,
|
||||||
|
"ValueSource": null,
|
||||||
|
"CampID": 0,
|
||||||
|
"Trigger": null,
|
||||||
|
"AIConfig": {
|
||||||
|
"AIFile": null,
|
||||||
|
"PathwayList": [],
|
||||||
|
"DefaultAIPathwayIndex": 0
|
||||||
|
},
|
||||||
|
"RecordID": 0,
|
||||||
|
"EventID": 0,
|
||||||
|
"Stable": false,
|
||||||
|
"DialogueTriggerAngle": 120,
|
||||||
|
"DialogueGroups": [
|
||||||
|
1000019
|
||||||
|
],
|
||||||
|
"ServerInteractVerificationIDList": [],
|
||||||
|
"DefaultIdleStateName": null,
|
||||||
|
"Name": "NPC1",
|
||||||
|
"RotY": 73.9557,
|
||||||
|
"Comment": "三月七",
|
||||||
|
"ID": 400001,
|
||||||
|
"PosX": 4.84,
|
||||||
|
"PosY": -1E-06,
|
||||||
|
"PosZ": 7.44,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"NPCID": 1000009,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"CreateOnInitial": true,
|
||||||
|
"ValueSource": null,
|
||||||
|
"CampID": 0,
|
||||||
|
"Trigger": null,
|
||||||
|
"AIConfig": {
|
||||||
|
"AIFile": null,
|
||||||
|
"PathwayList": [],
|
||||||
|
"DefaultAIPathwayIndex": 0
|
||||||
|
},
|
||||||
|
"RecordID": 0,
|
||||||
|
"EventID": 0,
|
||||||
|
"Stable": false,
|
||||||
|
"DialogueTriggerAngle": 120,
|
||||||
|
"DialogueGroups": [
|
||||||
|
1000012,
|
||||||
|
1000017
|
||||||
|
],
|
||||||
|
"ServerInteractVerificationIDList": [],
|
||||||
|
"DefaultIdleStateName": null,
|
||||||
|
"Name": "NPC2",
|
||||||
|
"RotY": 336.028,
|
||||||
|
"Comment": "丹恒",
|
||||||
|
"ID": 400002,
|
||||||
|
"PosX": 3.17,
|
||||||
|
"PosY": -3E-06,
|
||||||
|
"PosZ": 17.59,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"NPCID": 1000010,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"CreateOnInitial": true,
|
||||||
|
"ValueSource": null,
|
||||||
|
"CampID": 0,
|
||||||
|
"Trigger": null,
|
||||||
|
"AIConfig": {
|
||||||
|
"AIFile": null,
|
||||||
|
"PathwayList": [],
|
||||||
|
"DefaultAIPathwayIndex": 0
|
||||||
|
},
|
||||||
|
"RecordID": 0,
|
||||||
|
"EventID": 0,
|
||||||
|
"Stable": false,
|
||||||
|
"DialogueTriggerAngle": 120,
|
||||||
|
"DialogueGroups": [
|
||||||
|
1000023
|
||||||
|
],
|
||||||
|
"ServerInteractVerificationIDList": [],
|
||||||
|
"DefaultIdleStateName": null,
|
||||||
|
"Name": "NPC3",
|
||||||
|
"RotY": 259.6511,
|
||||||
|
"Comment": "姬子",
|
||||||
|
"ID": 400003,
|
||||||
|
"PosX": -2.524482,
|
||||||
|
"PosY": -1E-06,
|
||||||
|
"PosZ": -9.274504,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"NPCID": 1000011,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"CreateOnInitial": true,
|
||||||
|
"ValueSource": null,
|
||||||
|
"CampID": 0,
|
||||||
|
"Trigger": null,
|
||||||
|
"AIConfig": {
|
||||||
|
"AIFile": null,
|
||||||
|
"PathwayList": [],
|
||||||
|
"DefaultAIPathwayIndex": 0
|
||||||
|
},
|
||||||
|
"RecordID": 0,
|
||||||
|
"EventID": 0,
|
||||||
|
"Stable": false,
|
||||||
|
"DialogueTriggerAngle": 120,
|
||||||
|
"DialogueGroups": [
|
||||||
|
1000011,
|
||||||
|
1000016
|
||||||
|
],
|
||||||
|
"ServerInteractVerificationIDList": [],
|
||||||
|
"DefaultIdleStateName": null,
|
||||||
|
"Name": "NPC4",
|
||||||
|
"RotY": 100.8658,
|
||||||
|
"Comment": "杨",
|
||||||
|
"ID": 400004,
|
||||||
|
"PosX": -3.71,
|
||||||
|
"PosY": -2E-06,
|
||||||
|
"PosZ": 1.86,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"NPCID": 1000007,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"CreateOnInitial": true,
|
||||||
|
"ValueSource": null,
|
||||||
|
"CampID": 0,
|
||||||
|
"Trigger": {
|
||||||
|
"Shape": "Sphere",
|
||||||
|
"Radius": 3.0,
|
||||||
|
"DimX": 1.0,
|
||||||
|
"DimY": 1.0,
|
||||||
|
"DimZ": 1.0,
|
||||||
|
"TargetCamps": [],
|
||||||
|
"TriggerTimes": -1,
|
||||||
|
"CD": 0.0,
|
||||||
|
"Offset": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Server": true
|
||||||
|
},
|
||||||
|
"AIConfig": {
|
||||||
|
"AIFile": null,
|
||||||
|
"PathwayList": [],
|
||||||
|
"DefaultAIPathwayIndex": 0
|
||||||
|
},
|
||||||
|
"RecordID": 0,
|
||||||
|
"EventID": 0,
|
||||||
|
"Stable": false,
|
||||||
|
"DialogueTriggerAngle": 120,
|
||||||
|
"DialogueGroups": [
|
||||||
|
1000015
|
||||||
|
],
|
||||||
|
"ServerInteractVerificationIDList": [
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
3,
|
||||||
|
4
|
||||||
|
],
|
||||||
|
"DefaultIdleStateName": null,
|
||||||
|
"Name": "NPC5",
|
||||||
|
"RotY": 355.2151,
|
||||||
|
"Comment": "帕姆",
|
||||||
|
"ID": 400005,
|
||||||
|
"PosX": 2.23,
|
||||||
|
"PosY": 3E-06,
|
||||||
|
"PosZ": -15.91,
|
||||||
|
"IsDelete": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"GroupRefreshID": 0,
|
||||||
|
"RandomNPCMonsterList": null,
|
||||||
|
"InitialRandomNPCMonsterIDList": null
|
||||||
|
}
|
|
@ -0,0 +1,220 @@
|
||||||
|
{
|
||||||
|
"GroupGUID": "19875873-8703-4bc1-9671-479ef7f6b9f2",
|
||||||
|
"GroupName": "1000003",
|
||||||
|
"ConfigPrefabPath": null,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"Model": null,
|
||||||
|
"AreaAnchorName": "LevelArea_P10000_F10000000_G6",
|
||||||
|
"SaveType": "Temporary",
|
||||||
|
"CheckClearMainMissionID": 0,
|
||||||
|
"UnlockMainMissionID": 0,
|
||||||
|
"AnchorList": [
|
||||||
|
{
|
||||||
|
"Name": "Anchor1",
|
||||||
|
"RotY": 180.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 1,
|
||||||
|
"PosX": -0.41,
|
||||||
|
"PosY": 2E-06,
|
||||||
|
"PosZ": 5.032,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "Anchor2",
|
||||||
|
"RotY": 90.0,
|
||||||
|
"Comment": null,
|
||||||
|
"ID": 2,
|
||||||
|
"PosX": 3.22,
|
||||||
|
"PosY": 2E-06,
|
||||||
|
"PosZ": 10.32,
|
||||||
|
"IsDelete": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ModelList": [],
|
||||||
|
"MonsterList": [],
|
||||||
|
"PropList": [],
|
||||||
|
"WaypointList": [],
|
||||||
|
"PathwayList": [],
|
||||||
|
"BattleAreaList": [],
|
||||||
|
"NPCList": [
|
||||||
|
{
|
||||||
|
"NPCID": 1000012,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"CreateOnInitial": true,
|
||||||
|
"ValueSource": null,
|
||||||
|
"CampID": 0,
|
||||||
|
"Trigger": null,
|
||||||
|
"AIConfig": {
|
||||||
|
"AIFile": null,
|
||||||
|
"PathwayList": [],
|
||||||
|
"DefaultAIPathwayIndex": 0
|
||||||
|
},
|
||||||
|
"RecordID": 0,
|
||||||
|
"EventID": 0,
|
||||||
|
"Stable": false,
|
||||||
|
"DialogueTriggerAngle": 120,
|
||||||
|
"DialogueGroups": [
|
||||||
|
1000025,
|
||||||
|
1000019
|
||||||
|
],
|
||||||
|
"ServerInteractVerificationIDList": [],
|
||||||
|
"DefaultIdleStateName": null,
|
||||||
|
"Name": "NPC1",
|
||||||
|
"RotY": 73.9557,
|
||||||
|
"Comment": "三月七",
|
||||||
|
"ID": 400001,
|
||||||
|
"PosX": 4.84,
|
||||||
|
"PosY": -1E-06,
|
||||||
|
"PosZ": 7.44,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"NPCID": 1000013,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"CreateOnInitial": true,
|
||||||
|
"ValueSource": null,
|
||||||
|
"CampID": 0,
|
||||||
|
"Trigger": null,
|
||||||
|
"AIConfig": {
|
||||||
|
"AIFile": null,
|
||||||
|
"PathwayList": [],
|
||||||
|
"DefaultAIPathwayIndex": 0
|
||||||
|
},
|
||||||
|
"RecordID": 0,
|
||||||
|
"EventID": 0,
|
||||||
|
"Stable": false,
|
||||||
|
"DialogueTriggerAngle": 120,
|
||||||
|
"DialogueGroups": [
|
||||||
|
1000021,
|
||||||
|
1000024
|
||||||
|
],
|
||||||
|
"ServerInteractVerificationIDList": [],
|
||||||
|
"DefaultIdleStateName": null,
|
||||||
|
"Name": "NPC2",
|
||||||
|
"RotY": 336.028,
|
||||||
|
"Comment": "丹恒",
|
||||||
|
"ID": 400002,
|
||||||
|
"PosX": 3.17,
|
||||||
|
"PosY": -3E-06,
|
||||||
|
"PosZ": 17.59,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"NPCID": 1000014,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"CreateOnInitial": true,
|
||||||
|
"ValueSource": null,
|
||||||
|
"CampID": 0,
|
||||||
|
"Trigger": null,
|
||||||
|
"AIConfig": {
|
||||||
|
"AIFile": null,
|
||||||
|
"PathwayList": [],
|
||||||
|
"DefaultAIPathwayIndex": 0
|
||||||
|
},
|
||||||
|
"RecordID": 0,
|
||||||
|
"EventID": 0,
|
||||||
|
"Stable": false,
|
||||||
|
"DialogueTriggerAngle": 120,
|
||||||
|
"DialogueGroups": [
|
||||||
|
1000023
|
||||||
|
],
|
||||||
|
"ServerInteractVerificationIDList": [],
|
||||||
|
"DefaultIdleStateName": null,
|
||||||
|
"Name": "NPC3",
|
||||||
|
"RotY": 259.6511,
|
||||||
|
"Comment": "姬子",
|
||||||
|
"ID": 400003,
|
||||||
|
"PosX": -2.524482,
|
||||||
|
"PosY": -1E-06,
|
||||||
|
"PosZ": -9.274504,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"NPCID": 1000015,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"CreateOnInitial": true,
|
||||||
|
"ValueSource": null,
|
||||||
|
"CampID": 0,
|
||||||
|
"Trigger": null,
|
||||||
|
"AIConfig": {
|
||||||
|
"AIFile": null,
|
||||||
|
"PathwayList": [],
|
||||||
|
"DefaultAIPathwayIndex": 0
|
||||||
|
},
|
||||||
|
"RecordID": 0,
|
||||||
|
"EventID": 0,
|
||||||
|
"Stable": false,
|
||||||
|
"DialogueTriggerAngle": 120,
|
||||||
|
"DialogueGroups": [
|
||||||
|
1000020,
|
||||||
|
1000022
|
||||||
|
],
|
||||||
|
"ServerInteractVerificationIDList": [],
|
||||||
|
"DefaultIdleStateName": null,
|
||||||
|
"Name": "NPC4",
|
||||||
|
"RotY": 100.8658,
|
||||||
|
"Comment": "杨",
|
||||||
|
"ID": 400004,
|
||||||
|
"PosX": -3.71,
|
||||||
|
"PosY": -2E-06,
|
||||||
|
"PosZ": 1.86,
|
||||||
|
"IsDelete": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"NPCID": 1000007,
|
||||||
|
"LevelGraph": null,
|
||||||
|
"CreateOnInitial": true,
|
||||||
|
"ValueSource": null,
|
||||||
|
"CampID": 0,
|
||||||
|
"Trigger": {
|
||||||
|
"Shape": "Sphere",
|
||||||
|
"Radius": 3.0,
|
||||||
|
"DimX": 1.0,
|
||||||
|
"DimY": 1.0,
|
||||||
|
"DimZ": 1.0,
|
||||||
|
"TargetCamps": [],
|
||||||
|
"TriggerTimes": -1,
|
||||||
|
"CD": 0.0,
|
||||||
|
"Offset": {
|
||||||
|
"x": 0.0,
|
||||||
|
"y": 0.0,
|
||||||
|
"z": 0.0,
|
||||||
|
"magnitude": 0.0,
|
||||||
|
"sqrMagnitude": 0.0
|
||||||
|
},
|
||||||
|
"Server": true
|
||||||
|
},
|
||||||
|
"AIConfig": {
|
||||||
|
"AIFile": null,
|
||||||
|
"PathwayList": [],
|
||||||
|
"DefaultAIPathwayIndex": 0
|
||||||
|
},
|
||||||
|
"RecordID": 0,
|
||||||
|
"EventID": 0,
|
||||||
|
"Stable": false,
|
||||||
|
"DialogueTriggerAngle": 120,
|
||||||
|
"DialogueGroups": [
|
||||||
|
1000015,
|
||||||
|
1000010
|
||||||
|
],
|
||||||
|
"ServerInteractVerificationIDList": [
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
3,
|
||||||
|
4
|
||||||
|
],
|
||||||
|
"DefaultIdleStateName": null,
|
||||||
|
"Name": "NPC5",
|
||||||
|
"RotY": 355.2151,
|
||||||
|
"Comment": "帕姆",
|
||||||
|
"ID": 400005,
|
||||||
|
"PosX": 2.23,
|
||||||
|
"PosY": 3E-06,
|
||||||
|
"PosZ": -15.91,
|
||||||
|
"IsDelete": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"GroupRefreshID": 0,
|
||||||
|
"RandomNPCMonsterList": null,
|
||||||
|
"InitialRandomNPCMonsterIDList": null
|
||||||
|
}
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue