멸망엔딩
This commit is contained in:
Binary file not shown.
@@ -0,0 +1,50 @@
|
||||
using System;
|
||||
using UnityEngine;
|
||||
|
||||
// 호감도 비교 연산자. (호감도 [연산자] Value)
|
||||
public enum AffectionCompare
|
||||
{
|
||||
[InspectorName("≥")] AtLeast,
|
||||
[InspectorName(">")] GreaterThan,
|
||||
[InspectorName("≤")] AtMost,
|
||||
[InspectorName("<")] LessThan,
|
||||
[InspectorName("=")] Equal,
|
||||
[InspectorName("≠")] NotEqual,
|
||||
}
|
||||
|
||||
// 다음 조건과 묶는 방식. AND가 OR보다 우선순위가 높다 (A and B or C → (A and B) or C).
|
||||
public enum AffectionJoin
|
||||
{
|
||||
[InspectorName("AND")] And,
|
||||
[InspectorName("OR")] Or,
|
||||
}
|
||||
|
||||
// 호감도 분기 노드가 검사하는 조건 하나. (캐릭터, 연산자, 값) + 다음 조건과의 연결자.
|
||||
// 여러 개를 이어 붙여 조건식을 만든다 — DialogNode.AffectionRequirements 참고.
|
||||
[Serializable]
|
||||
public class AffectionRequirement
|
||||
{
|
||||
// 검사 대상 캐릭터. 비우면 대화 주인 NPC의 호감도를 본다.
|
||||
public CharacterData Character;
|
||||
|
||||
// 호감도를 Value와 어떻게 비교할지
|
||||
public AffectionCompare Compare = AffectionCompare.AtLeast;
|
||||
|
||||
// 비교 기준값
|
||||
public int Value;
|
||||
|
||||
// 다음 조건과 묶는 방식 (마지막 조건에서는 무시된다)
|
||||
public AffectionJoin JoinWithNext = AffectionJoin.And;
|
||||
|
||||
// 이 조건 하나의 성립 여부
|
||||
public bool IsMet(int affection) => Compare switch
|
||||
{
|
||||
AffectionCompare.AtLeast => affection >= Value,
|
||||
AffectionCompare.GreaterThan => affection > Value,
|
||||
AffectionCompare.AtMost => affection <= Value,
|
||||
AffectionCompare.LessThan => affection < Value,
|
||||
AffectionCompare.Equal => affection == Value,
|
||||
AffectionCompare.NotEqual => affection != Value,
|
||||
_ => false,
|
||||
};
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f38182435621e88449adc22d629f6e6b
|
||||
@@ -60,6 +60,18 @@ public class DialogNode : ScriptableObject
|
||||
"비우면 기록 안 함. 이후 대화 조건(RequiredChoiceCodes)에서 검사 가능")]
|
||||
public string HiddenCode;
|
||||
|
||||
[Header("Affection Branch")]
|
||||
[Tooltip("켜면 이 노드는 대사 없이 호감도 조건만 검사해 즉시 라우팅한다: " +
|
||||
"조건을 만족하면 AffectionPassBranch로, 아니면 Next로")]
|
||||
public bool AffectionCheck;
|
||||
|
||||
[Tooltip("검사할 호감도 조건들 (캐릭터·연산자·값 + 다음 조건과의 and/or). " +
|
||||
"캐릭터를 비우면 대화 주인 NPC. AND가 OR보다 우선. 비어 있으면 무조건 통과")]
|
||||
public List<AffectionRequirement> AffectionRequirements = new();
|
||||
|
||||
[Tooltip("조건을 만족했을 때 갈 노드 (실패하면 Next로)")]
|
||||
public DialogNode AffectionPassBranch;
|
||||
|
||||
[Header("ChoiceQuestion")]
|
||||
[TextArea(2,5)] public string ChoiceQuestion;
|
||||
|
||||
|
||||
@@ -281,8 +281,22 @@ private async Awaitable PlayEntry(DialogEntry entry)
|
||||
try
|
||||
{
|
||||
var node = entry.Group.StartNode;
|
||||
int routingHops = 0; // 연속 라우팅 횟수 — 라우팅 노드끼리 순환하면 대기 없는 무한 루프가 되므로 차단
|
||||
while (node != null)
|
||||
{
|
||||
// 호감도 라우팅 노드 — 대사 없이 즉시 분기 (플레이어에겐 분기 자체가 보이지 않는다)
|
||||
if (node.AffectionCheck)
|
||||
{
|
||||
if (++routingHops > 100)
|
||||
{
|
||||
Debug.LogError($"[DialogPlayer] 라우팅 노드가 순환합니다 — 대화 중단: {entry.Group.name}");
|
||||
break;
|
||||
}
|
||||
node = IsAffectionMet(node) ? node.AffectionPassBranch : node.Next;
|
||||
continue;
|
||||
}
|
||||
routingHops = 0; // 실제 대사 노드에 도달 — 카운터 리셋
|
||||
|
||||
// 이 노드가 히든 분기를 가지면, 노드가 재생되는 동안 제스처 감시를 무장한다.
|
||||
// (무장 안 된 노드는 아래 대기/선택이 기존과 완전히 동일하게 동작)
|
||||
bool armed = node.HiddenBranch != null;
|
||||
@@ -604,6 +618,39 @@ private async Awaitable<bool> PlayNode(DialogNode node)
|
||||
return false;
|
||||
}
|
||||
|
||||
// 호감도 분기 노드의 조건식 평가.
|
||||
// 각 조건의 JoinWithNext로 이어 붙이며, AND가 OR보다 우선순위가 높다:
|
||||
// A and B or C → (A and B) or C
|
||||
// 즉 "AND 그룹들을 OR로 합치는" 형태로 계산한다. 조건이 없으면 통과로 본다.
|
||||
private bool IsAffectionMet(DialogNode node)
|
||||
{
|
||||
var requirements = node.AffectionRequirements;
|
||||
if (requirements == null || requirements.Count == 0) return true;
|
||||
|
||||
var story = StoryManager.Instance;
|
||||
bool result = false; // 지금까지 닫힌 AND 그룹들을 OR로 합친 값
|
||||
bool group = true; // 현재 진행 중인 AND 그룹
|
||||
|
||||
for (int i = 0; i < requirements.Count; i++)
|
||||
{
|
||||
var req = requirements[i];
|
||||
if (req == null) continue;
|
||||
|
||||
var target = req.Character != null ? req.Character : _voice.Character;
|
||||
group &= req.IsMet(story.GetAffection(target));
|
||||
|
||||
// 다음 연결자가 OR이거나 마지막이면 AND 그룹을 닫고 OR로 합친다
|
||||
bool isLast = i == requirements.Count - 1;
|
||||
if (isLast || req.JoinWithNext == AffectionJoin.Or)
|
||||
{
|
||||
result |= group;
|
||||
group = true;
|
||||
}
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
// 노드의 EventKey와 같은 Key를 가진 이벤트들을 호출
|
||||
private void RaiseNodeEvent(string key)
|
||||
{
|
||||
|
||||
@@ -0,0 +1,83 @@
|
||||
using System;
|
||||
using Unity.GraphToolkit.Editor;
|
||||
|
||||
namespace DinoLove.Dialog.GraphTool.Editor
|
||||
{
|
||||
// 호감도 분기 노드. 대사 없이 호감도 조건식만 검사해 두 경로 중 하나로 즉시 라우팅한다.
|
||||
// DialogNode(AffectionCheck=true) 하나로 변환된다.
|
||||
//
|
||||
// Condition Count로 조건 줄을 늘린다. 조건 하나는 [Target / 연산자 / 값] 세 줄이고,
|
||||
// 조건 사이마다 [and · or] 연결자 줄이 하나씩 생긴다:
|
||||
//
|
||||
// Target 1 윤지후
|
||||
// Compare 1 ≥
|
||||
// Affection 1 30
|
||||
// Join 1 AND
|
||||
// Target 2 잔디
|
||||
// Compare 2 <
|
||||
// Affection 2 20
|
||||
// ├─ True →
|
||||
// └─ False →
|
||||
//
|
||||
// AND가 OR보다 우선순위가 높다 (A and B or C → (A and B) or C).
|
||||
[Serializable]
|
||||
internal class DialogAffectionNode : DialogGraphNode
|
||||
{
|
||||
public const string PORT_PASS_OUT = "PassOut";
|
||||
public const string PORT_FAIL_OUT = "FailOut";
|
||||
|
||||
public const string OPTION_CONDITION_COUNT = "ConditionCount";
|
||||
|
||||
// 조건별 포트 이름 규칙 (임포터와 공유)
|
||||
public static string TargetPort(int i) => $"Target{i}";
|
||||
public static string ComparePort(int i) => $"Compare{i}";
|
||||
public static string ValuePort(int i) => $"Value{i}";
|
||||
public static string JoinPort(int i) => $"Join{i}";
|
||||
|
||||
protected override void OnDefineOptions(IOptionDefinitionContext context)
|
||||
{
|
||||
context.AddOption<int>(OPTION_CONDITION_COUNT)
|
||||
.WithDisplayName("Condition Count")
|
||||
.WithTooltip("검사할 호감도 조건 개수 (캐릭터마다 하나씩)")
|
||||
.WithDefaultValue(1)
|
||||
.Delayed();
|
||||
}
|
||||
|
||||
protected override void OnDefinePorts(IPortDefinitionContext context)
|
||||
{
|
||||
AddExecInput(context);
|
||||
|
||||
int conditionCount = 1;
|
||||
GetNodeOptionByName(OPTION_CONDITION_COUNT)?.TryGetValue(out conditionCount);
|
||||
if (conditionCount < 1) conditionCount = 1;
|
||||
|
||||
for (int i = 0; i < conditionCount; i++)
|
||||
{
|
||||
context.AddInputPort<CharacterData>(TargetPort(i))
|
||||
.WithDisplayName($"Target {i + 1}")
|
||||
.WithTooltip("누구의 호감도를 검사할지. 비우면 대화 주인 NPC")
|
||||
.Build();
|
||||
context.AddInputPort<AffectionCompare>(ComparePort(i))
|
||||
.WithDisplayName($"Compare {i + 1}")
|
||||
.WithTooltip("호감도를 아래 값과 어떻게 비교할지")
|
||||
.Build();
|
||||
context.AddInputPort<int>(ValuePort(i))
|
||||
.WithDisplayName($"Affection {i + 1}")
|
||||
.WithTooltip("비교 기준값")
|
||||
.Build();
|
||||
|
||||
// 조건 사이에만 연결자를 둔다 (마지막 조건 뒤에는 이어질 게 없으므로 생략)
|
||||
if (i < conditionCount - 1)
|
||||
{
|
||||
context.AddInputPort<AffectionJoin>(JoinPort(i))
|
||||
.WithDisplayName($"Join {i + 1}")
|
||||
.WithTooltip("다음 조건과 묶는 방식. AND가 OR보다 우선")
|
||||
.Build();
|
||||
}
|
||||
}
|
||||
|
||||
AddExecOutput(context, PORT_PASS_OUT, "True →");
|
||||
AddExecOutput(context, PORT_FAIL_OUT, "False →");
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 25bc0691603f93e4196ae428c028e855
|
||||
@@ -10,7 +10,7 @@ namespace DinoLove.Dialog.GraphTool.Editor
|
||||
// .dlg 그래프 에셋을 기존 런타임 타입(DialogGroup / DialogNode / DialogChoice)으로 변환한다.
|
||||
// 생성된 DialogNode들은 서브에셋으로, DialogGroup이 메인 에셋으로 등록된다.
|
||||
// 따라서 DialogPlayer는 수정 없이 임포트된 .dlg 에셋(= DialogGroup)을 그대로 사용한다.
|
||||
[ScriptedImporter(10, DialogGraph.AssetExtension)] // 버전 올리면 기존 .dlg 에셋이 재임포트됨
|
||||
[ScriptedImporter(13, DialogGraph.AssetExtension)] // 버전 올리면 기존 .dlg 에셋이 재임포트됨
|
||||
internal class DialogGraphImporter : ScriptedImporter
|
||||
{
|
||||
public override void OnImportAsset(AssetImportContext ctx)
|
||||
@@ -47,7 +47,8 @@ public override void OnImportAsset(AssetImportContext ctx)
|
||||
while (queue.Count > 0)
|
||||
{
|
||||
var gn = queue.Dequeue();
|
||||
if (gn == null || map.ContainsKey(gn) || (gn is not DialogLineNode && gn is not DialogStagingNode))
|
||||
if (gn == null || map.ContainsKey(gn)
|
||||
|| (gn is not DialogLineNode && gn is not DialogStagingNode && gn is not DialogAffectionNode))
|
||||
continue;
|
||||
|
||||
var dn = ScriptableObject.CreateInstance<DialogNode>();
|
||||
@@ -82,6 +83,39 @@ public override void OnImportAsset(AssetImportContext ctx)
|
||||
continue;
|
||||
}
|
||||
|
||||
// 호감도 분기 노드 — 대사 없이 라우팅만: 조건 통과 → AffectionPassBranch, 실패 → Next
|
||||
if (gn is DialogAffectionNode affectionNode)
|
||||
{
|
||||
dn.AffectionCheck = true;
|
||||
|
||||
int conditionCount = 1;
|
||||
var countOption = affectionNode.GetNodeOptionByName(DialogAffectionNode.OPTION_CONDITION_COUNT);
|
||||
if (countOption != null && countOption.TryGetValue(out int storedCount) && storedCount > 0)
|
||||
conditionCount = storedCount;
|
||||
|
||||
dn.AffectionRequirements = new List<AffectionRequirement>(conditionCount);
|
||||
for (int i = 0; i < conditionCount; i++)
|
||||
{
|
||||
dn.AffectionRequirements.Add(new AffectionRequirement
|
||||
{
|
||||
Character = GetInputPortValue<CharacterData>(gn.GetInputPortByName(DialogAffectionNode.TargetPort(i))),
|
||||
Compare = GetInputPortValue<AffectionCompare>(gn.GetInputPortByName(DialogAffectionNode.ComparePort(i))),
|
||||
Value = GetInputPortValue<int>(gn.GetInputPortByName(DialogAffectionNode.ValuePort(i))),
|
||||
// 마지막 조건에는 Join 포트가 없다 → 기본 And (평가 시 무시됨)
|
||||
JoinWithNext = i < conditionCount - 1
|
||||
? GetInputPortValue<AffectionJoin>(gn.GetInputPortByName(DialogAffectionNode.JoinPort(i)))
|
||||
: AffectionJoin.And
|
||||
});
|
||||
}
|
||||
|
||||
var passDest = GetConnectedNode(gn, DialogAffectionNode.PORT_PASS_OUT);
|
||||
dn.AffectionPassBranch = passDest != null && map.TryGetValue(passDest, out var passDn) ? passDn : null;
|
||||
|
||||
var failDest = GetConnectedNode(gn, DialogAffectionNode.PORT_FAIL_OUT);
|
||||
dn.Next = failDest != null && map.TryGetValue(failDest, out var failDn) ? failDn : null;
|
||||
continue;
|
||||
}
|
||||
|
||||
var line = (DialogLineNode)gn;
|
||||
|
||||
dn.Speaker = GetInputPortValue<CharacterData>(gn.GetInputPortByName(DialogLineNode.PORT_SPEAKER));
|
||||
@@ -184,6 +218,14 @@ static IEnumerable<INode> GetSuccessors(INode node)
|
||||
yield break;
|
||||
}
|
||||
|
||||
// 호감도 분기 노드는 두 출력 모두 후속
|
||||
if (node is DialogAffectionNode)
|
||||
{
|
||||
yield return GetConnectedNode(node, DialogAffectionNode.PORT_PASS_OUT);
|
||||
yield return GetConnectedNode(node, DialogAffectionNode.PORT_FAIL_OUT);
|
||||
yield break;
|
||||
}
|
||||
|
||||
if (node is not DialogLineNode line)
|
||||
yield break;
|
||||
|
||||
|
||||
Binary file not shown.
8
Assets/04_Models/Hand.meta
Normal file
8
Assets/04_Models/Hand.meta
Normal file
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 1ae7206e729b90343a672768de69a897
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
8
Assets/04_Models/Hand/Materials.meta
Normal file
8
Assets/04_Models/Hand/Materials.meta
Normal file
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 16b70af8bd146d34e91ca71da52dec4b
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
137
Assets/04_Models/Hand/Materials/HandSkin.mat
Normal file
137
Assets/04_Models/Hand/Materials/HandSkin.mat
Normal file
@@ -0,0 +1,137 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: HandSkin
|
||||
m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3}
|
||||
m_Parent: {fileID: 0}
|
||||
m_ModifiedSerializedProperties: 0
|
||||
m_ValidKeywords: []
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap:
|
||||
RenderType: Opaque
|
||||
disabledShaderPasses:
|
||||
- MOTIONVECTORS
|
||||
m_LockedProperties:
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _BaseMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailAlbedoMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailMask:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailNormalMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _EmissionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MainTex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MetallicGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _OcclusionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ParallaxMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SpecGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AddPrecomputedVelocity: 0
|
||||
- _AlphaClip: 0
|
||||
- _AlphaToMask: 0
|
||||
- _Blend: 0
|
||||
- _BlendModePreserveSpecular: 1
|
||||
- _BumpScale: 1
|
||||
- _ClearCoatMask: 0
|
||||
- _ClearCoatSmoothness: 0
|
||||
- _Cull: 2
|
||||
- _Cutoff: 0.5
|
||||
- _DetailAlbedoMapScale: 1
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DstBlend: 0
|
||||
- _DstBlendAlpha: 0
|
||||
- _EnvironmentReflections: 1
|
||||
- _GlossMapScale: 0
|
||||
- _Glossiness: 0
|
||||
- _GlossyReflections: 0
|
||||
- _Metallic: 0
|
||||
- _OcclusionStrength: 1
|
||||
- _Parallax: 0.005
|
||||
- _QueueOffset: 0
|
||||
- _ReceiveShadows: 1
|
||||
- _Smoothness: 0.5
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpecularHighlights: 1
|
||||
- _SrcBlend: 1
|
||||
- _SrcBlendAlpha: 1
|
||||
- _Surface: 0
|
||||
- _WorkflowMode: 1
|
||||
- _XRMotionVectorsPass: 1
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _BaseColor: {r: 1, g: 0.6913746, b: 0.4764151, a: 1}
|
||||
- _Color: {r: 1, g: 0.6913746, b: 0.47641504, a: 1}
|
||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
m_AllowLocking: 1
|
||||
--- !u!114 &2480257783005219361
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier: Unity.RenderPipelines.Universal.Editor::UnityEditor.Rendering.Universal.AssetVersion
|
||||
version: 10
|
||||
8
Assets/04_Models/Hand/Materials/HandSkin.mat.meta
Normal file
8
Assets/04_Models/Hand/Materials/HandSkin.mat.meta
Normal file
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: e73da655421ccea4d8ee00e01831d6c2
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
8
Assets/04_Models/Hand/Prefabs.meta
Normal file
8
Assets/04_Models/Hand/Prefabs.meta
Normal file
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 0a6d9f1f2814fc041aa9295bed985666
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
BIN
Assets/04_Models/Hand/Prefabs/SphereHand.prefab
LFS
Normal file
BIN
Assets/04_Models/Hand/Prefabs/SphereHand.prefab
LFS
Normal file
Binary file not shown.
7
Assets/04_Models/Hand/Prefabs/SphereHand.prefab.meta
Normal file
7
Assets/04_Models/Hand/Prefabs/SphereHand.prefab.meta
Normal file
@@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 00772b2a38da1ad46b8c732952fdefc3
|
||||
PrefabImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
BIN
Assets/04_Models/Hand/SphereHand.fbx
LFS
Normal file
BIN
Assets/04_Models/Hand/SphereHand.fbx
LFS
Normal file
Binary file not shown.
114
Assets/04_Models/Hand/SphereHand.fbx.meta
Normal file
114
Assets/04_Models/Hand/SphereHand.fbx.meta
Normal file
@@ -0,0 +1,114 @@
|
||||
fileFormatVersion: 2
|
||||
guid: fd5024b80d700a34bb135edab182fbec
|
||||
ModelImporter:
|
||||
serializedVersion: 24501
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
materials:
|
||||
materialImportMode: 2
|
||||
materialName: 0
|
||||
materialSearch: 1
|
||||
materialLocation: 1
|
||||
searchTexturesGlobally: 0
|
||||
animations:
|
||||
legacyGenerateAnimations: 4
|
||||
bakeSimulation: 0
|
||||
resampleCurves: 1
|
||||
optimizeGameObjects: 0
|
||||
removeConstantScaleCurves: 0
|
||||
motionNodeName:
|
||||
animationImportErrors:
|
||||
animationImportWarnings:
|
||||
animationRetargetingWarnings:
|
||||
animationDoRetargetingWarnings: 0
|
||||
importAnimatedCustomProperties: 0
|
||||
importConstraints: 0
|
||||
animationCompression: 1
|
||||
animationRotationError: 0.5
|
||||
animationPositionError: 0.5
|
||||
animationScaleError: 0.5
|
||||
animationWrapMode: 0
|
||||
extraExposedTransformPaths: []
|
||||
extraUserProperties: []
|
||||
clipAnimations: []
|
||||
isReadable: 0
|
||||
meshes:
|
||||
lODScreenPercentages: []
|
||||
globalScale: 1
|
||||
meshCompression: 0
|
||||
addColliders: 0
|
||||
useSRGBMaterialColor: 1
|
||||
sortHierarchyByName: 1
|
||||
importPhysicalCameras: 1
|
||||
importVisibility: 1
|
||||
importBlendShapes: 1
|
||||
importCameras: 1
|
||||
importLights: 1
|
||||
nodeNameCollisionStrategy: 1
|
||||
fileIdsGeneration: 2
|
||||
swapUVChannels: 0
|
||||
generateSecondaryUV: 0
|
||||
useFileUnits: 1
|
||||
keepQuads: 0
|
||||
weldVertices: 1
|
||||
bakeAxisConversion: 0
|
||||
preserveHierarchy: 0
|
||||
skinWeightsMode: 0
|
||||
maxBonesPerVertex: 4
|
||||
minBoneWeight: 0.001
|
||||
optimizeBones: 1
|
||||
generateMeshLods: 0
|
||||
meshLodGenerationFlags: 0
|
||||
maximumMeshLod: -1
|
||||
importUVs: -1
|
||||
importVertexColors: 1
|
||||
meshOptimizationFlags: -1
|
||||
indexFormat: 0
|
||||
secondaryUVAngleDistortion: 8
|
||||
secondaryUVAreaDistortion: 15.000001
|
||||
secondaryUVHardAngle: 88
|
||||
secondaryUVMarginMethod: 1
|
||||
secondaryUVMinLightmapResolution: 40
|
||||
secondaryUVMinObjectScale: 1
|
||||
secondaryUVPackMargin: 4
|
||||
useFileScale: 1
|
||||
strictVertexDataChecks: 0
|
||||
tangentSpace:
|
||||
normalSmoothAngle: 60
|
||||
normalImportMode: 0
|
||||
tangentImportMode: 3
|
||||
normalCalculationMode: 4
|
||||
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
|
||||
blendShapeNormalImportMode: 1
|
||||
normalSmoothingSource: 0
|
||||
calculateBlendshapeNormalsDeltaFromImportedNormals: 0
|
||||
referencedClips: []
|
||||
importAnimation: 1
|
||||
humanDescription:
|
||||
serializedVersion: 3
|
||||
human: []
|
||||
skeleton: []
|
||||
armTwist: 0.5
|
||||
foreArmTwist: 0.5
|
||||
upperLegTwist: 0.5
|
||||
legTwist: 0.5
|
||||
armStretch: 0.05
|
||||
legStretch: 0.05
|
||||
feetSpacing: 0
|
||||
globalScale: 1
|
||||
rootMotionBoneName:
|
||||
hasTranslationDoF: 0
|
||||
hasExtraRoot: 0
|
||||
skeletonHasParents: 1
|
||||
lastHumanDescriptionAvatarSource: {instanceID: 0}
|
||||
autoGenerateAvatarMappingIfUnspecified: 1
|
||||
animationType: 2
|
||||
humanoidOversampling: 1
|
||||
avatarSetup: 0
|
||||
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
|
||||
importBlendShapeDeformPercent: 1
|
||||
remapMaterialsIfMaterialImportModeIsNone: 0
|
||||
additionalBone: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Binary file not shown.
BIN
Assets/07_Data/Character/Quetzalcoatlus.asset
LFS
Normal file
BIN
Assets/07_Data/Character/Quetzalcoatlus.asset
LFS
Normal file
Binary file not shown.
8
Assets/07_Data/Character/Quetzalcoatlus.asset.meta
Normal file
8
Assets/07_Data/Character/Quetzalcoatlus.asset.meta
Normal file
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 6d2e762c3ba970547a0ccc93156534ed
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 11400000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
1523
Assets/07_Data/DialogGraph/Chapter5/Chapter5_Quetzalcoatlus.dlg
Normal file
1523
Assets/07_Data/DialogGraph/Chapter5/Chapter5_Quetzalcoatlus.dlg
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,10 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3618ed09745a3bd4681db90b351ce8c7
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 11500000, guid: 2ae5ca89bbed445479d9023586f0c041, type: 3}
|
||||
BIN
Assets/10_FX/SFX/BombDrop.mp3
LFS
Normal file
BIN
Assets/10_FX/SFX/BombDrop.mp3
LFS
Normal file
Binary file not shown.
23
Assets/10_FX/SFX/BombDrop.mp3.meta
Normal file
23
Assets/10_FX/SFX/BombDrop.mp3.meta
Normal file
@@ -0,0 +1,23 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 5a597ee9cba29984db492b9dc98bb1f2
|
||||
AudioImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 8
|
||||
defaultSettings:
|
||||
serializedVersion: 2
|
||||
loadType: 0
|
||||
sampleRateSetting: 0
|
||||
sampleRateOverride: 44100
|
||||
compressionFormat: 1
|
||||
quality: 1
|
||||
conversionMode: 0
|
||||
preloadAudioData: 0
|
||||
platformSettingOverrides: {}
|
||||
forceToMono: 0
|
||||
normalize: 1
|
||||
loadInBackground: 0
|
||||
ambisonic: 0
|
||||
3D: 1
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
BIN
Assets/10_FX/SFX/Explosion.mp3
LFS
Normal file
BIN
Assets/10_FX/SFX/Explosion.mp3
LFS
Normal file
Binary file not shown.
23
Assets/10_FX/SFX/Explosion.mp3.meta
Normal file
23
Assets/10_FX/SFX/Explosion.mp3.meta
Normal file
@@ -0,0 +1,23 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d73741cd21b032e4fada5209c17d40a8
|
||||
AudioImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 8
|
||||
defaultSettings:
|
||||
serializedVersion: 2
|
||||
loadType: 0
|
||||
sampleRateSetting: 0
|
||||
sampleRateOverride: 44100
|
||||
compressionFormat: 1
|
||||
quality: 1
|
||||
conversionMode: 0
|
||||
preloadAudioData: 0
|
||||
platformSettingOverrides: {}
|
||||
forceToMono: 0
|
||||
normalize: 1
|
||||
loadInBackground: 0
|
||||
ambisonic: 0
|
||||
3D: 1
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Binary file not shown.
Reference in New Issue
Block a user