# Conflicts:
#	Assets/XR/Settings/OpenXR Package Settings.asset
This commit is contained in:
dldydtn9755-crypto
2026-07-10 17:48:38 +09:00
28 changed files with 2294 additions and 33 deletions

Binary file not shown.

View File

@@ -25,6 +25,9 @@ public class DialogCondition
[Tooltip("밟으면 이 대화가 비활성화되는 이벤트존 Id들 (하나라도 밟았으면 비활성화)")]
public List<string> ExcludedZoneIds = new();
[Tooltip("켜져 있어야 하는 StoryTrigger Id들 (전부 필요). 예: 계약서 서명 트리거")]
public List<string> RequiredTriggerIds = new();
// affectionTarget: 호감도 조건을 검사할 캐릭터 (보통 대화를 거는 NPC 자신)
public bool IsMet(CharacterData affectionTarget)
{
@@ -52,6 +55,10 @@ public bool IsMet(CharacterData affectionTarget)
if (!string.IsNullOrEmpty(zoneId) && story.HasTriggeredZone(zoneId))
return false;
foreach (var triggerId in RequiredTriggerIds)
if (!string.IsNullOrEmpty(triggerId) && !StoryTrigger.IsActive(triggerId))
return false;
return true;
}
}

View File

@@ -0,0 +1,55 @@
using System.Collections.Generic;
using UnityEngine;
// 씬별 BGM 관리 (이벤트 구동). 씬마다 하나 배치한다.
// - 씬 시작 시 Default Bgm 재생
// - EventZone이 발동하거나 StoryTrigger가 켜지는 순간, 그 Id에 매핑된 곡이 있으면 교체 (크로스페이드)
// - 매핑에 없는 Id는 무시. 나중에 발동한 항목이 이긴다
// - 대화 전용 BGM(Override) 재생 중이면 곡은 보류됐다가 대화가 끝나면 반영된다
public class SceneBgm : MonoBehaviour
{
[System.Serializable]
public class BgmEntry
{
[Tooltip("EventZone의 Zone Id 또는 StoryTrigger의 Trigger Id")]
public string Id;
[Tooltip("해당 Id 발동 시 재생할 BGM. 비우면 무음")]
public AudioClip Clip;
}
[Tooltip("씬 시작 시 재생할 기본 BGM. 비우면 무음")]
[SerializeField] private AudioClip _defaultBgm;
[Tooltip("존/트리거 Id → BGM 매핑")]
[SerializeField] private List<BgmEntry> _entries = new();
private void Start()
{
if (SoundManager.Instance != null)
SoundManager.Instance.SetDefaultBGM(_defaultBgm);
}
private void OnEnable()
{
EventZone.OnZoneTriggered += HandleId;
StoryTrigger.OnActivated += HandleId;
}
private void OnDisable()
{
EventZone.OnZoneTriggered -= HandleId;
StoryTrigger.OnActivated -= HandleId;
}
private void HandleId(string id)
{
foreach (var entry in _entries)
{
if (entry.Id != id) continue;
if (SoundManager.Instance != null)
SoundManager.Instance.SetDefaultBGM(entry.Clip);
return;
}
}
}

View File

@@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: 3a5362edc262af5439945354ddc95802

View File

@@ -40,7 +40,7 @@ private void Awake()
}
else
{
Destroy(gameObject); //이미 인스턴스가 있으면 자신을 파괴
Destroy(gameObject); //이미 인스턴스가 있으면 자신을 파괴 (씬마다 놓아도 첫 번째만 남음)
}
}
@@ -72,6 +72,7 @@ private void Start()
//기본 BGM 교체 (씬/분위기 전환용). 전용 BGM 재생 중이면 곡은 유지되고 복귀 시 반영됨.
public void SetDefaultBGM(AudioClip clip)
{
if (_defaultBgm == clip) return; //같은 곡이면 페이드 재시작 없이 유지
_defaultBgm = clip;
if (_overrideBgm == null)
StartBgmChange(clip);

View File

@@ -1,3 +1,4 @@
using System;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Playables;
@@ -29,6 +30,9 @@ public class EventZone : MonoBehaviour
public static bool IsAnyPlaying => _playingCount > 0;
private static int _playingCount;
// 존이 실제로 발동(기록)되는 순간 ZoneId와 함께 호출 (SceneBgm 등에서 구독)
public static event Action<string> OnZoneTriggered;
public string ZoneId => string.IsNullOrEmpty(_zoneId) ? name : _zoneId;
// 잠글 때 켜져 있던 프로바이더만 기록해서, 해제 시 원래 꺼져 있던 것까지 켜지 않도록 한다.
@@ -52,6 +56,7 @@ private void OnTriggerEnter(Collider other)
if (story != null)
story.RecordZoneTriggered(ZoneId);
_hasPlayed = true;
OnZoneTriggered?.Invoke(ZoneId);
if (_timeline == null)
{

View File

@@ -0,0 +1,48 @@
using System;
using System.Collections.Generic;
using UnityEngine;
// 씬에 배치하는 수동 트리거. Activate()가 호출되면 켜지고,
// DialogCondition의 RequiredTriggerIds에서 Id로 조회해 대화 활성화 조건으로 쓴다.
// 예: 계약서 서명(DrawablePaper.OnSigned) → 이 트리거 Activate → 서명 후 대화 활성화.
//
// 주의: 세이브에 기록되지 않는 런타임 상태다 (오브젝트가 비활성/파괴되면 꺼짐).
// 영구히 남아야 하는 진행은 기존처럼 대화 완료 기록/선택지 Code를 쓸 것.
public class StoryTrigger : MonoBehaviour
{
[Tooltip("조건에서 참조할 Id. 비워두면 오브젝트 이름 사용")]
[SerializeField] private string _triggerId;
[Tooltip("시작부터 켜진 상태로 둘지")]
[SerializeField] private bool _startActivated;
public string TriggerId => string.IsNullOrEmpty(_triggerId) ? name : _triggerId;
public bool IsActivated { get; private set; }
private static readonly Dictionary<string, StoryTrigger> _registry = new();
// 트리거가 꺼짐→켜짐으로 바뀌는 순간 TriggerId와 함께 호출 (SceneBgm 등에서 구독)
public static event Action<string> OnActivated;
private void Awake()
{
IsActivated = _startActivated;
}
private void OnEnable() => _registry[TriggerId] = this;
private void OnDisable() => _registry.Remove(TriggerId);
// UnityEvent에서 호출 (예: DrawablePaper.OnSigned)
public void Activate()
{
if (IsActivated) return;
IsActivated = true;
OnActivated?.Invoke(TriggerId);
}
public void Deactivate() => IsActivated = false;
// 해당 Id의 트리거가 씬에 있고 켜져 있는가 (DialogCondition에서 사용)
public static bool IsActive(string id)
=> _registry.TryGetValue(id, out var trigger) && trigger.IsActivated;
}

View File

@@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: 3dd49c6ec99ea3543addd745e4737dbc

View File

@@ -0,0 +1,789 @@
{
"m_SGVersion": 3,
"m_Type": "UnityEditor.ShaderGraph.GraphData",
"m_ObjectId": "7d7fb6d7ebca48d998b6db1f95363e06",
"m_Properties": [
{
"m_Id": "bbb77627a5fc45d5a170287461689a21"
}
],
"m_Keywords": [],
"m_Dropdowns": [],
"m_CategoryData": [
{
"m_Id": "7cfa4d682d8e408cace8d43fe80eb532"
}
],
"m_Nodes": [
{
"m_Id": "2a5d61ce2f554258a6115e1745627362"
},
{
"m_Id": "1fd31443d0c74482abbd1d815629ab95"
},
{
"m_Id": "d32ada7839a742fca3e1914ba24accdb"
},
{
"m_Id": "52f1f10d9a4341c0a17dc23bf5c82107"
},
{
"m_Id": "eb12d6f22fe14ee18cc910fce8b0b800"
},
{
"m_Id": "6e8c505986824773b74b247f09a6d78e"
},
{
"m_Id": "24f3d2ca16d947f2bca3b842b4fc75ee"
}
],
"m_GroupDatas": [],
"m_StickyNoteDatas": [],
"m_Edges": [
{
"m_OutputSlot": {
"m_Node": {
"m_Id": "24f3d2ca16d947f2bca3b842b4fc75ee"
},
"m_SlotId": 0
},
"m_InputSlot": {
"m_Node": {
"m_Id": "52f1f10d9a4341c0a17dc23bf5c82107"
},
"m_SlotId": 0
}
},
{
"m_OutputSlot": {
"m_Node": {
"m_Id": "24f3d2ca16d947f2bca3b842b4fc75ee"
},
"m_SlotId": 7
},
"m_InputSlot": {
"m_Node": {
"m_Id": "eb12d6f22fe14ee18cc910fce8b0b800"
},
"m_SlotId": 0
}
},
{
"m_OutputSlot": {
"m_Node": {
"m_Id": "6e8c505986824773b74b247f09a6d78e"
},
"m_SlotId": 0
},
"m_InputSlot": {
"m_Node": {
"m_Id": "24f3d2ca16d947f2bca3b842b4fc75ee"
},
"m_SlotId": 1
}
}
],
"m_VertexContext": {
"m_Position": {
"x": 0.0,
"y": 0.0
},
"m_Blocks": [
{
"m_Id": "2a5d61ce2f554258a6115e1745627362"
},
{
"m_Id": "1fd31443d0c74482abbd1d815629ab95"
},
{
"m_Id": "d32ada7839a742fca3e1914ba24accdb"
}
]
},
"m_FragmentContext": {
"m_Position": {
"x": 0.0,
"y": 200.0
},
"m_Blocks": [
{
"m_Id": "52f1f10d9a4341c0a17dc23bf5c82107"
},
{
"m_Id": "eb12d6f22fe14ee18cc910fce8b0b800"
}
]
},
"m_PreviewData": {
"serializedMesh": {
"m_SerializedMesh": "{\"mesh\":{\"instanceID\":0}}",
"m_Guid": ""
},
"preventRotation": false
},
"m_Path": "Shader Graphs",
"m_GraphPrecision": 1,
"m_PreviewMode": 2,
"m_OutputNode": {
"m_Id": ""
},
"m_SubDatas": [],
"m_ActiveTargets": [
{
"m_Id": "37e07b8ff1904cf79b26a5d5cf1409d3"
}
]
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot",
"m_ObjectId": "173da1acd4ff4a3aba8c7b4a75d218c8",
"m_Id": 0,
"m_DisplayName": "RGBA",
"m_SlotType": 1,
"m_Hidden": false,
"m_HideConnector": false,
"m_ShaderOutputName": "RGBA",
"m_StageCapability": 2,
"m_CustomBinding": "",
"m_Value": {
"x": 0.0,
"y": 0.0,
"z": 0.0,
"w": 0.0
},
"m_DefaultValue": {
"x": 0.0,
"y": 0.0,
"z": 0.0,
"w": 0.0
},
"m_Labels": []
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.BlockNode",
"m_ObjectId": "1fd31443d0c74482abbd1d815629ab95",
"m_Group": {
"m_Id": ""
},
"m_Name": "VertexDescription.Normal",
"m_DrawState": {
"m_Expanded": true,
"m_Position": {
"serializedVersion": "2",
"x": 0.0,
"y": 0.0,
"width": 0.0,
"height": 0.0
}
},
"m_Slots": [
{
"m_Id": "4b4ac6872eb7440c8028b6faa09c3dff"
}
],
"synonyms": [],
"m_Precision": 0,
"m_PreviewExpanded": true,
"m_DismissedVersion": 0,
"m_PreviewMode": 0,
"m_CustomColors": {
"m_SerializableColors": []
},
"m_SerializedDescriptor": "VertexDescription.Normal"
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode",
"m_ObjectId": "24f3d2ca16d947f2bca3b842b4fc75ee",
"m_Group": {
"m_Id": ""
},
"m_Name": "Sample Texture 2D",
"m_DrawState": {
"m_Expanded": true,
"m_Position": {
"serializedVersion": "2",
"x": -350.0000305175781,
"y": 154.00001525878907,
"width": 208.0000457763672,
"height": 433.00006103515627
}
},
"m_Slots": [
{
"m_Id": "173da1acd4ff4a3aba8c7b4a75d218c8"
},
{
"m_Id": "2c77aa3a41f64c679bd000c129849781"
},
{
"m_Id": "dd030cb0fb304a63bd3a02a6d967a611"
},
{
"m_Id": "45746215193d48a584f0cb45db348407"
},
{
"m_Id": "c2e5a8e2492e47a0a3782e0bc0d032a0"
},
{
"m_Id": "f8c460a07c3447dfad96c2d02c973cb4"
},
{
"m_Id": "869409097ac04e8b9e755e2ad0508b34"
},
{
"m_Id": "afac2163c3054ab39f4a73c1a4dcd56f"
}
],
"synonyms": [
"tex2d"
],
"m_Precision": 0,
"m_PreviewExpanded": true,
"m_DismissedVersion": 0,
"m_PreviewMode": 0,
"m_CustomColors": {
"m_SerializableColors": []
},
"m_TextureType": 0,
"m_NormalMapSpace": 0,
"m_EnableGlobalMipBias": true,
"m_MipSamplingMode": 0
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.BlockNode",
"m_ObjectId": "2a5d61ce2f554258a6115e1745627362",
"m_Group": {
"m_Id": ""
},
"m_Name": "VertexDescription.Position",
"m_DrawState": {
"m_Expanded": true,
"m_Position": {
"serializedVersion": "2",
"x": 0.0,
"y": 0.0,
"width": 0.0,
"height": 0.0
}
},
"m_Slots": [
{
"m_Id": "c9240cc5e292446ca30650a436080f4c"
}
],
"synonyms": [],
"m_Precision": 0,
"m_PreviewExpanded": true,
"m_DismissedVersion": 0,
"m_PreviewMode": 0,
"m_CustomColors": {
"m_SerializableColors": []
},
"m_SerializedDescriptor": "VertexDescription.Position"
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
"m_ObjectId": "2c77aa3a41f64c679bd000c129849781",
"m_Id": 4,
"m_DisplayName": "R",
"m_SlotType": 1,
"m_Hidden": false,
"m_HideConnector": false,
"m_ShaderOutputName": "R",
"m_StageCapability": 2,
"m_CustomBinding": "",
"m_Value": 0.0,
"m_DefaultValue": 0.0,
"m_Labels": [],
"m_LiteralMode": false
}
{
"m_SGVersion": 1,
"m_Type": "UnityEditor.Rendering.Universal.ShaderGraph.UniversalTarget",
"m_ObjectId": "37e07b8ff1904cf79b26a5d5cf1409d3",
"m_Datas": [],
"m_ActiveSubTarget": {
"m_Id": "c764e24e78ee4a5aabfa9afff53a0844"
},
"m_AllowMaterialOverride": false,
"m_SurfaceType": 1,
"m_ZTestMode": 8,
"m_ZWriteControl": 0,
"m_AlphaMode": 0,
"m_RenderFace": 2,
"m_AlphaClip": false,
"m_CastShadows": true,
"m_ReceiveShadows": true,
"m_DisableTint": false,
"m_Sort3DAs2DCompatible": false,
"m_AdditionalMotionVectorMode": 0,
"m_AlembicMotionVectors": false,
"m_SupportsLODCrossFade": false,
"m_CustomEditorGUI": "",
"m_SupportVFX": false
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.TangentMaterialSlot",
"m_ObjectId": "3855abefb40a49eaa8e8ead7fdb61c28",
"m_Id": 0,
"m_DisplayName": "Tangent",
"m_SlotType": 0,
"m_Hidden": false,
"m_HideConnector": false,
"m_ShaderOutputName": "Tangent",
"m_StageCapability": 1,
"m_CustomBinding": "",
"m_Value": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"m_DefaultValue": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"m_Labels": [],
"m_Space": 0
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
"m_ObjectId": "447915772aa7431db2d6a5820592dbcf",
"m_Id": 0,
"m_DisplayName": "Alpha",
"m_SlotType": 0,
"m_Hidden": false,
"m_HideConnector": false,
"m_ShaderOutputName": "Alpha",
"m_StageCapability": 2,
"m_CustomBinding": "",
"m_Value": 1.0,
"m_DefaultValue": 1.0,
"m_Labels": [],
"m_LiteralMode": false
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
"m_ObjectId": "45746215193d48a584f0cb45db348407",
"m_Id": 6,
"m_DisplayName": "B",
"m_SlotType": 1,
"m_Hidden": false,
"m_HideConnector": false,
"m_ShaderOutputName": "B",
"m_StageCapability": 2,
"m_CustomBinding": "",
"m_Value": 0.0,
"m_DefaultValue": 0.0,
"m_Labels": [],
"m_LiteralMode": false
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.NormalMaterialSlot",
"m_ObjectId": "4b4ac6872eb7440c8028b6faa09c3dff",
"m_Id": 0,
"m_DisplayName": "Normal",
"m_SlotType": 0,
"m_Hidden": false,
"m_HideConnector": false,
"m_ShaderOutputName": "Normal",
"m_StageCapability": 1,
"m_CustomBinding": "",
"m_Value": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"m_DefaultValue": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"m_Labels": [],
"m_Space": 0
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.BlockNode",
"m_ObjectId": "52f1f10d9a4341c0a17dc23bf5c82107",
"m_Group": {
"m_Id": ""
},
"m_Name": "SurfaceDescription.BaseColor",
"m_DrawState": {
"m_Expanded": true,
"m_Position": {
"serializedVersion": "2",
"x": 0.0,
"y": 0.0,
"width": 0.0,
"height": 0.0
}
},
"m_Slots": [
{
"m_Id": "e695174f33944769b5b2973fd3b2314c"
}
],
"synonyms": [],
"m_Precision": 0,
"m_PreviewExpanded": true,
"m_DismissedVersion": 0,
"m_PreviewMode": 0,
"m_CustomColors": {
"m_SerializableColors": []
},
"m_SerializedDescriptor": "SurfaceDescription.BaseColor"
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.PropertyNode",
"m_ObjectId": "6e8c505986824773b74b247f09a6d78e",
"m_Group": {
"m_Id": ""
},
"m_Name": "Property",
"m_DrawState": {
"m_Expanded": true,
"m_Position": {
"serializedVersion": "2",
"x": -565.0000610351563,
"y": 154.00001525878907,
"width": 148.00006103515626,
"height": 34.0
}
},
"m_Slots": [
{
"m_Id": "87c6486493cc4f7da639c59e325f7791"
}
],
"synonyms": [],
"m_Precision": 0,
"m_PreviewExpanded": true,
"m_DismissedVersion": 0,
"m_PreviewMode": 0,
"m_CustomColors": {
"m_SerializableColors": []
},
"m_Property": {
"m_Id": "bbb77627a5fc45d5a170287461689a21"
}
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.CategoryData",
"m_ObjectId": "7cfa4d682d8e408cace8d43fe80eb532",
"m_Name": "",
"m_ChildObjectList": [
{
"m_Id": "bbb77627a5fc45d5a170287461689a21"
}
]
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot",
"m_ObjectId": "869409097ac04e8b9e755e2ad0508b34",
"m_Id": 2,
"m_DisplayName": "UV",
"m_SlotType": 0,
"m_Hidden": false,
"m_HideConnector": false,
"m_ShaderOutputName": "UV",
"m_StageCapability": 3,
"m_CustomBinding": "",
"m_Value": {
"x": 0.0,
"y": 0.0
},
"m_DefaultValue": {
"x": 0.0,
"y": 0.0
},
"m_Labels": [],
"m_Channel": 0
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot",
"m_ObjectId": "87c6486493cc4f7da639c59e325f7791",
"m_Id": 0,
"m_DisplayName": "BaseTexture",
"m_SlotType": 1,
"m_Hidden": false,
"m_HideConnector": false,
"m_ShaderOutputName": "Out",
"m_StageCapability": 3,
"m_CustomBinding": "",
"m_BareResource": false
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot",
"m_ObjectId": "afac2163c3054ab39f4a73c1a4dcd56f",
"m_Id": 3,
"m_DisplayName": "Sampler",
"m_SlotType": 0,
"m_Hidden": false,
"m_HideConnector": false,
"m_ShaderOutputName": "Sampler",
"m_StageCapability": 3,
"m_CustomBinding": "",
"m_BareResource": false
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.Internal.Texture2DShaderProperty",
"m_ObjectId": "bbb77627a5fc45d5a170287461689a21",
"m_Guid": {
"m_GuidSerialized": "32558cce-8e72-401e-819f-c5981bfe7ad2"
},
"promotedFromAssetID": "",
"promotedFromCategoryName": "",
"promotedOrdering": -1,
"m_Name": "BaseTexture",
"m_DefaultRefNameVersion": 1,
"m_RefNameGeneratedByDisplayName": "BaseTexture",
"m_DefaultReferenceName": "_BaseTexture",
"m_OverrideReferenceName": "",
"m_GeneratePropertyBlock": true,
"m_UseCustomSlotLabel": false,
"m_CustomSlotLabel": "",
"m_DismissedVersion": 0,
"m_Precision": 0,
"overrideHLSLDeclaration": false,
"hlslDeclarationOverride": 0,
"hideConnector": false,
"m_Hidden": false,
"m_PerRendererData": false,
"m_customAttributes": [],
"m_Value": {
"m_SerializedTexture": "",
"m_Guid": ""
},
"isMainTexture": false,
"useTilingAndOffset": false,
"useTexelSize": true,
"isHDR": false,
"m_Modifiable": true,
"m_DefaultType": 0
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
"m_ObjectId": "c2e5a8e2492e47a0a3782e0bc0d032a0",
"m_Id": 7,
"m_DisplayName": "A",
"m_SlotType": 1,
"m_Hidden": false,
"m_HideConnector": false,
"m_ShaderOutputName": "A",
"m_StageCapability": 2,
"m_CustomBinding": "",
"m_Value": 0.0,
"m_DefaultValue": 0.0,
"m_Labels": [],
"m_LiteralMode": false
}
{
"m_SGVersion": 2,
"m_Type": "UnityEditor.Rendering.Universal.ShaderGraph.UniversalUnlitSubTarget",
"m_ObjectId": "c764e24e78ee4a5aabfa9afff53a0844",
"m_KeepLightingVariants": false,
"m_DefaultDecalBlending": true,
"m_DefaultSSAO": true
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.PositionMaterialSlot",
"m_ObjectId": "c9240cc5e292446ca30650a436080f4c",
"m_Id": 0,
"m_DisplayName": "Position",
"m_SlotType": 0,
"m_Hidden": false,
"m_HideConnector": false,
"m_ShaderOutputName": "Position",
"m_StageCapability": 1,
"m_CustomBinding": "",
"m_Value": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"m_DefaultValue": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"m_Labels": [],
"m_Space": 0
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.BlockNode",
"m_ObjectId": "d32ada7839a742fca3e1914ba24accdb",
"m_Group": {
"m_Id": ""
},
"m_Name": "VertexDescription.Tangent",
"m_DrawState": {
"m_Expanded": true,
"m_Position": {
"serializedVersion": "2",
"x": 0.0,
"y": 0.0,
"width": 0.0,
"height": 0.0
}
},
"m_Slots": [
{
"m_Id": "3855abefb40a49eaa8e8ead7fdb61c28"
}
],
"synonyms": [],
"m_Precision": 0,
"m_PreviewExpanded": true,
"m_DismissedVersion": 0,
"m_PreviewMode": 0,
"m_CustomColors": {
"m_SerializableColors": []
},
"m_SerializedDescriptor": "VertexDescription.Tangent"
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
"m_ObjectId": "dd030cb0fb304a63bd3a02a6d967a611",
"m_Id": 5,
"m_DisplayName": "G",
"m_SlotType": 1,
"m_Hidden": false,
"m_HideConnector": false,
"m_ShaderOutputName": "G",
"m_StageCapability": 2,
"m_CustomBinding": "",
"m_Value": 0.0,
"m_DefaultValue": 0.0,
"m_Labels": [],
"m_LiteralMode": false
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.ColorRGBMaterialSlot",
"m_ObjectId": "e695174f33944769b5b2973fd3b2314c",
"m_Id": 0,
"m_DisplayName": "Base Color",
"m_SlotType": 0,
"m_Hidden": false,
"m_HideConnector": false,
"m_ShaderOutputName": "BaseColor",
"m_StageCapability": 2,
"m_CustomBinding": "",
"m_Value": {
"x": 0.5,
"y": 0.5,
"z": 0.5
},
"m_DefaultValue": {
"x": 0.5,
"y": 0.5,
"z": 0.5
},
"m_Labels": [],
"m_ColorMode": 0,
"m_DefaultColor": {
"r": 0.5,
"g": 0.5,
"b": 0.5,
"a": 1.0
}
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.BlockNode",
"m_ObjectId": "eb12d6f22fe14ee18cc910fce8b0b800",
"m_Group": {
"m_Id": ""
},
"m_Name": "SurfaceDescription.Alpha",
"m_DrawState": {
"m_Expanded": true,
"m_Position": {
"serializedVersion": "2",
"x": 0.0,
"y": 0.0,
"width": 0.0,
"height": 0.0
}
},
"m_Slots": [
{
"m_Id": "447915772aa7431db2d6a5820592dbcf"
}
],
"synonyms": [],
"m_Precision": 0,
"m_PreviewExpanded": true,
"m_DismissedVersion": 0,
"m_PreviewMode": 0,
"m_CustomColors": {
"m_SerializableColors": []
},
"m_SerializedDescriptor": "SurfaceDescription.Alpha"
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot",
"m_ObjectId": "f8c460a07c3447dfad96c2d02c973cb4",
"m_Id": 1,
"m_DisplayName": "Texture",
"m_SlotType": 0,
"m_Hidden": false,
"m_HideConnector": false,
"m_ShaderOutputName": "Texture",
"m_StageCapability": 3,
"m_CustomBinding": "",
"m_BareResource": false,
"m_Texture": {
"m_SerializedTexture": "",
"m_Guid": ""
},
"m_DefaultType": 0
}

View File

@@ -0,0 +1,20 @@
fileFormatVersion: 2
guid: e1e415e680374764db378f13f68cdd1a
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 2
userData:
assetBundleName:
assetBundleVariant:
script: {fileID: 11500000, guid: 625f186215c104763be7675aa2d941aa, type: 3}
useAsTemplate: 0
exposeTemplateAsShader: 0
indexedData: {instanceID: 0}
template:
name:
category:
description:
icon: {instanceID: 0}
thumbnail: {instanceID: 0}
order: 0

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,156 @@
fileFormatVersion: 2
guid: 7a658c985bd317d4c9532d5c4c08b5b5
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 13
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
flipGreenChannel: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMipmapLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 0
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
swizzle: 50462976
cookieLightType: 0
platformSettings:
- serializedVersion: 4
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: WebGL
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: WindowsStoreApps
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
customData:
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
spriteCustomMetadata:
entries: []
nameFileIdTable: {}
mipmapLimitGroupName:
pSDRemoveMatte: 0
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 8929d066b6e9eef489eb3570c99e765f
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,165 @@
%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: CherryBlossom_Mat
m_Shader: {fileID: 4800000, guid: 0406db5a14f94604a8c57ccfbc9f3b46, type: 3}
m_Parent: {fileID: 0}
m_ModifiedSerializedProperties: 0
m_ValidKeywords:
- _ALPHATEST_ON
- _EMISSION
- _SURFACE_TYPE_TRANSPARENT
m_InvalidKeywords:
- _FLIPBOOKBLENDING_OFF
m_LightmapFlags: 2
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
m_CustomRenderQueue: 3000
stringTagMap:
RenderType: Transparent
disabledShaderPasses:
- SHADOWCASTER
- DepthOnly
m_LockedProperties:
m_SavedProperties:
serializedVersion: 3
m_TexEnvs:
- _BaseMap:
m_Texture: {fileID: 2800000, guid: 7a658c985bd317d4c9532d5c4c08b5b5, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _BaseTexture:
m_Texture: {fileID: 2800000, guid: 7a658c985bd317d4c9532d5c4c08b5b5, type: 3}
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: 1
- _AlphaToMask: 0
- _Blend: 0
- _BlendModePreserveSpecular: 1
- _BlendOp: 0
- _BumpScale: 1
- _CameraFadingEnabled: 0
- _CameraFarFadeDistance: 2
- _CameraNearFadeDistance: 1
- _ClearCoatMask: 0
- _ClearCoatSmoothness: 0
- _ColorMode: 0
- _Cull: 2
- _Cutoff: 0.5
- _DetailAlbedoMapScale: 1
- _DetailNormalMapScale: 1
- _DistortionBlend: 0.5
- _DistortionEnabled: 0
- _DistortionStrength: 1
- _DistortionStrengthScaled: 0.1
- _DstBlend: 10
- _DstBlendAlpha: 10
- _EnvironmentReflections: 1
- _FlipbookBlending: 0
- _FlipbookMode: 0
- _GlossMapScale: 0
- _Glossiness: 0
- _GlossyReflections: 0
- _Metallic: 0
- _Mode: 0
- _OcclusionStrength: 1
- _Parallax: 0.005
- _QueueControl: 0
- _QueueOffset: 0
- _ReceiveShadows: 1
- _Smoothness: 0.5
- _SmoothnessTextureChannel: 0
- _SoftParticlesEnabled: 0
- _SoftParticlesFarFadeDistance: 1
- _SoftParticlesNearFadeDistance: 0
- _SpecularHighlights: 1
- _SrcBlend: 5
- _SrcBlendAlpha: 1
- _Surface: 1
- _WorkflowMode: 1
- _XRMotionVectorsPass: 1
- _ZWrite: 0
m_Colors:
- _BaseColor: {r: 1, g: 1, b: 1, a: 1}
- _BaseColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0}
- _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0}
- _Color: {r: 1, g: 1, b: 1, a: 1}
- _EmissionColor: {r: 2, g: 0.72641504, b: 0.72641504, a: 1}
- _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0}
- _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1}
m_BuildTextureStacks: []
m_AllowLocking: 1
--- !u!114 &1264103061544845953
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

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 62143bb69b9ca304b81c0ece5867d7b9
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 2100000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1370,15 +1370,15 @@ MonoBehaviour:
- rid: 4848514453388656893
type: {class: 'Constant`1[[UnityEngine.AudioClip, UnityEngine.AudioModule]]', ns: Unity.GraphToolkit.Editor, asm: UnityEditor.GraphToolkitModule}
data:
m_Value: {fileID: 0}
m_Value: {fileID: 8300000, guid: b6c3006047634cc4c8a489dab79d30ba, type: 3}
- rid: 4848514453388656894
type: {class: 'Constant`1[[UnityEngine.GameObject, UnityEngine.CoreModule]]', ns: Unity.GraphToolkit.Editor, asm: UnityEditor.GraphToolkitModule}
data:
m_Value: {fileID: 0}
m_Value: {fileID: 3798151386575650477, guid: e55c850a81ea79d4ebcbd00e9ba65609, type: 3}
- rid: 4848514453388656895
type: {class: 'Constant`1[[System.Single, mscorlib]]', ns: Unity.GraphToolkit.Editor, asm: UnityEditor.GraphToolkitModule}
data:
m_Value: 5
m_Value: 15
- rid: 4848514453388656896
type: {class: 'Constant`1[[System.Boolean, mscorlib]]', ns: Unity.GraphToolkit.Editor, asm: UnityEditor.GraphToolkitModule}
data:

View File

@@ -0,0 +1,650 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!114 &1
MonoBehaviour:
m_ObjectHideFlags: 61
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: 12501, guid: 0000000000000000e000000000000000, type: 0}
m_Name: Chapter1_Carnotaurus5
m_EditorClassIdentifier: UnityEditor.dll::Unity.GraphToolkit.Editor.Implementation.GraphObjectImp
m_GraphModel:
rid: 4848514365209968918
references:
version: 2
RefIds:
- rid: -2
type: {class: , ns: , asm: }
- rid: 4848514365209968918
type: {class: GraphModelImp, ns: Unity.GraphToolkit.Editor.Implementation, asm: UnityEditor.GraphToolkitModule}
data:
m_Guid:
m_Value0: 14743801598135559126
m_Value1: 14874423988134968649
m_HashGuid:
serializedVersion: 2
Hash: d6e3b4ff6f819ccc497d5523cf916cce
m_Name: Chapter1_Carnotaurus5
m_GraphNodeModels:
- rid: 4848514365209968921
- rid: 4848514365209968923
- rid: 4848514455607443647
- rid: 4848514455607443665
m_GraphWireModels:
- rid: 4848514365209968937
- rid: 4848514455607443648
- rid: 4848514455607443666
m_GraphStickyNoteModels: []
m_GraphPlacematModels: []
m_GraphVariableModels: []
m_GraphPortalModels: []
m_SectionModels:
- rid: 4848514365209968919
m_LocalSubgraphs: []
m_LastKnownBounds:
serializedVersion: 2
x: -86
y: 89
width: 1621
height: 509
m_GraphElementMetaData:
- m_Guid:
m_Value0: 11886921906498108818
m_Value1: 1241276629292152157
m_HashGuid:
serializedVersion: 2
Hash: 92fda08d7ed4f6a45df5f38c84e63911
m_Category: 0
m_Index: 0
- m_Guid:
m_Value0: 5760401696664917696
m_Value1: 5304284838533059046
m_HashGuid:
serializedVersion: 2
Hash: c01645bdd20ef14fe6d14014f59a9c49
m_Category: 0
m_Index: 1
- m_Guid:
m_Value0: 12075701744894930101
m_Value1: 8354277098249585595
m_HashGuid:
serializedVersion: 2
Hash: b5ec06d6c18295a7bb03590cc25af073
m_Category: 2
m_Index: 0
- m_Guid:
m_Value0: 7868436636663145073
m_Value1: 9680455308751965230
m_HashGuid:
serializedVersion: 2
Hash: 71e2f9a96e4d326d2e8c3466d0e25786
m_Category: 0
m_Index: 2
- m_Guid:
m_Value0: 10132703975558200609
m_Value1: 9238518778737162950
m_HashGuid:
serializedVersion: 2
Hash: 21bd559594989e8cc67a67a9e1cf3580
m_Category: 2
m_Index: 1
- m_Guid:
m_Value0: 4412835210894292992
m_Value1: 10243743053156541227
m_HashGuid:
serializedVersion: 2
Hash: 00b8b07d3e8a3d3d2b63c57d0816298e
m_Category: 0
m_Index: 3
- m_Guid:
m_Value0: 3944798219258409999
m_Value1: 9598804950413504815
m_HashGuid:
serializedVersion: 2
Hash: 0fb47d7914bdbe362f71a8e93ece3585
m_Category: 2
m_Index: 2
m_EntryPoint:
rid: 4848514365209968921
m_Graph:
rid: 4848514365209968920
- rid: 4848514365209968919
type: {class: SectionModel, ns: Unity.GraphToolkit.Editor, asm: UnityEditor.GraphToolkitModule}
data:
m_Guid:
m_Value0: 17677551595292556901
m_Value1: 13576497333533336155
m_HashGuid:
serializedVersion: 2
Hash: 657e0d28844753f55be24abb646869bc
m_Version: 2
m_Items: []
m_Title:
- rid: 4848514365209968920
type: {class: DialogGraph, ns: DinoLove.Dialog.GraphTool.Editor, asm: Assembly-CSharp-Editor}
data:
- rid: 4848514365209968921
type: {class: UserNodeModelImp, ns: Unity.GraphToolkit.Editor.Implementation, asm: UnityEditor.GraphToolkitModule}
data:
m_Guid:
m_Value0: 11886921906498108818
m_Value1: 1241276629292152157
m_HashGuid:
serializedVersion: 2
Hash: 92fda08d7ed4f6a45df5f38c84e63911
m_Version: 2
m_Position: {x: -86.250015, y: 147.20003}
m_Title:
m_Tooltip:
m_NodePreviewModel:
rid: -2
m_State: 0
m_InputConstantsById:
m_KeyList: []
m_ValueList: []
m_InputPortInfos:
expandedPortsById:
m_KeyList: []
m_ValueList:
m_OutputPortInfos:
expandedPortsById:
m_KeyList: []
m_ValueList:
m_Collapsed: 0
m_CurrentModeIndex: 0
m_ElementColor:
m_Color: {r: 0, g: 0, b: 0, a: 0}
m_HasUserColor: 0
m_Node:
rid: 4848514365209968922
- rid: 4848514365209968922
type: {class: DialogStartNode, ns: DinoLove.Dialog.GraphTool.Editor, asm: Assembly-CSharp-Editor}
data:
- rid: 4848514365209968923
type: {class: UserNodeModelImp, ns: Unity.GraphToolkit.Editor.Implementation, asm: UnityEditor.GraphToolkitModule}
data:
m_Guid:
m_Value0: 5760401696664917696
m_Value1: 5304284838533059046
m_HashGuid:
serializedVersion: 2
Hash: c01645bdd20ef14fe6d14014f59a9c49
m_Version: 2
m_Position: {x: 215.48514, y: 89.40076}
m_Title:
m_Tooltip:
m_NodePreviewModel:
rid: -2
m_State: 0
m_InputConstantsById:
m_KeyList:
- __option_ChoiceCount
- __option_EventKey
- Speaker
- TalkText
- Gesture
- Expression
- Voice
- Bgm
- Vfx
- LineDuration
- LookAtPlayer
- WaitForInput
- SpeakerNameOverride
- ForcePlayerLook
- HudAnchor
m_ValueList:
- rid: 4848514365209968924
- rid: 4848514365209968925
- rid: 4848514365209968926
- rid: 4848514365209968927
- rid: 4848514365209968928
- rid: 4848514365209968929
- rid: 4848514365209968930
- rid: 4848514365209968931
- rid: 4848514365209968932
- rid: 4848514365209968933
- rid: 4848514365209968934
- rid: 4848514365209968935
- rid: 4848514453388656869
- rid: 4848514453388656825
- rid: 4848514455607443550
m_InputPortInfos:
expandedPortsById:
m_KeyList: []
m_ValueList:
m_OutputPortInfos:
expandedPortsById:
m_KeyList: []
m_ValueList:
m_Collapsed: 0
m_CurrentModeIndex: 0
m_ElementColor:
m_Color: {r: 0, g: 0, b: 0, a: 0}
m_HasUserColor: 0
m_Node:
rid: 4848514365209968936
- rid: 4848514365209968924
type: {class: 'Constant`1[[System.Int32, mscorlib]]', ns: Unity.GraphToolkit.Editor, asm: UnityEditor.GraphToolkitModule}
data:
m_Value: 0
- rid: 4848514365209968925
type: {class: 'Constant`1[[System.String, mscorlib]]', ns: Unity.GraphToolkit.Editor, asm: UnityEditor.GraphToolkitModule}
data:
m_Value:
- rid: 4848514365209968926
type: {class: 'Constant`1[[CharacterData, Assembly-CSharp]]', ns: Unity.GraphToolkit.Editor, asm: UnityEditor.GraphToolkitModule}
data:
m_Value: {fileID: 11400000, guid: b7c3c52c4e4e9fc49bf084eae180835b, type: 2}
- rid: 4848514365209968927
type: {class: 'Constant`1[[DinoLove.Dialog.GraphTool.Editor.DialogText, Assembly-CSharp-Editor]]', ns: Unity.GraphToolkit.Editor, asm: UnityEditor.GraphToolkitModule}
data:
m_Value:
Value: "\uC88B\uB2E4. \uC774\uC81C\uBD80\uD130 \uB108\uB294 \uD559\uC0DD\uD68C\uC758
\uB178\uC608\uB2E4."
- rid: 4848514365209968928
type: {class: 'Constant`1[[GestureData, Assembly-CSharp]]', ns: Unity.GraphToolkit.Editor, asm: UnityEditor.GraphToolkitModule}
data:
m_Value: {fileID: 0}
- rid: 4848514365209968929
type: {class: 'Constant`1[[ExpressionData, Assembly-CSharp]]', ns: Unity.GraphToolkit.Editor, asm: UnityEditor.GraphToolkitModule}
data:
m_Value: {fileID: 0}
- rid: 4848514365209968930
type: {class: 'Constant`1[[VoiceClip, Assembly-CSharp]]', ns: Unity.GraphToolkit.Editor, asm: UnityEditor.GraphToolkitModule}
data:
m_Value: {fileID: 0}
- rid: 4848514365209968931
type: {class: 'Constant`1[[UnityEngine.AudioClip, UnityEngine.AudioModule]]', ns: Unity.GraphToolkit.Editor, asm: UnityEditor.GraphToolkitModule}
data:
m_Value: {fileID: 0}
- rid: 4848514365209968932
type: {class: 'Constant`1[[UnityEngine.GameObject, UnityEngine.CoreModule]]', ns: Unity.GraphToolkit.Editor, asm: UnityEditor.GraphToolkitModule}
data:
m_Value: {fileID: 0}
- rid: 4848514365209968933
type: {class: 'Constant`1[[System.Single, mscorlib]]', ns: Unity.GraphToolkit.Editor, asm: UnityEditor.GraphToolkitModule}
data:
m_Value: 3
- rid: 4848514365209968934
type: {class: 'Constant`1[[System.Boolean, mscorlib]]', ns: Unity.GraphToolkit.Editor, asm: UnityEditor.GraphToolkitModule}
data:
m_Value: 0
- rid: 4848514365209968935
type: {class: 'Constant`1[[System.Boolean, mscorlib]]', ns: Unity.GraphToolkit.Editor, asm: UnityEditor.GraphToolkitModule}
data:
m_Value: 0
- rid: 4848514365209968936
type: {class: DialogLineNode, ns: DinoLove.Dialog.GraphTool.Editor, asm: Assembly-CSharp-Editor}
data:
- rid: 4848514365209968937
type: {class: WireModel, ns: Unity.GraphToolkit.Editor, asm: UnityEditor.GraphToolkitModule}
data:
m_Guid:
m_Value0: 12075701744894930101
m_Value1: 8354277098249585595
m_HashGuid:
serializedVersion: 2
Hash: b5ec06d6c18295a7bb03590cc25af073
m_Version: 2
m_FromPortReference:
m_NodeModelGuid:
m_Value0: 11886921906498108818
m_Value1: 1241276629292152157
m_NodeModelHashGuid:
serializedVersion: 2
Hash: 92fda08d7ed4f6a45df5f38c84e63911
m_UniqueId: Out
m_PortDirection: 2
m_PortOrientation: 0
m_Title:
m_ToPortReference:
m_NodeModelGuid:
m_Value0: 5760401696664917696
m_Value1: 5304284838533059046
m_NodeModelHashGuid:
serializedVersion: 2
Hash: c01645bdd20ef14fe6d14014f59a9c49
m_UniqueId: In
m_PortDirection: 1
m_PortOrientation: 0
m_Title:
- rid: 4848514453388656825
type: {class: 'Constant`1[[System.Boolean, mscorlib]]', ns: Unity.GraphToolkit.Editor, asm: UnityEditor.GraphToolkitModule}
data:
m_Value: 0
- rid: 4848514453388656869
type: {class: 'Constant`1[[DinoLove.Dialog.GraphTool.Editor.DialogShortText, Assembly-CSharp-Editor]]', ns: Unity.GraphToolkit.Editor, asm: UnityEditor.GraphToolkitModule}
data:
m_Value:
Value:
- rid: 4848514455607443550
type: {class: 'Constant`1[[CharacterData, Assembly-CSharp]]', ns: Unity.GraphToolkit.Editor, asm: UnityEditor.GraphToolkitModule}
data:
m_Value: {fileID: 11400000, guid: b7c3c52c4e4e9fc49bf084eae180835b, type: 2}
- rid: 4848514455607443647
type: {class: UserNodeModelImp, ns: Unity.GraphToolkit.Editor.Implementation, asm: UnityEditor.GraphToolkitModule}
data:
m_Guid:
m_Value0: 7868436636663145073
m_Value1: 9680455308751965230
m_HashGuid:
serializedVersion: 2
Hash: 71e2f9a96e4d326d2e8c3466d0e25786
m_Version: 2
m_Position: {x: 684.167, y: 90.82912}
m_Title:
m_Tooltip:
m_NodePreviewModel:
rid: -2
m_State: 0
m_InputConstantsById:
m_KeyList:
- __option_ChoiceCount
- __option_EventKey
- Speaker
- SpeakerNameOverride
- HudAnchor
- TalkText
- Gesture
- Expression
- Voice
- Bgm
- Vfx
- LineDuration
- LookAtPlayer
- ForcePlayerLook
- WaitForInput
m_ValueList:
- rid: 4848514455607443649
- rid: 4848514455607443650
- rid: 4848514455607443651
- rid: 4848514455607443652
- rid: 4848514455607443653
- rid: 4848514455607443654
- rid: 4848514455607443655
- rid: 4848514455607443656
- rid: 4848514455607443657
- rid: 4848514455607443658
- rid: 4848514455607443659
- rid: 4848514455607443660
- rid: 4848514455607443661
- rid: 4848514455607443662
- rid: 4848514455607443663
m_InputPortInfos:
expandedPortsById:
m_KeyList: []
m_ValueList:
m_OutputPortInfos:
expandedPortsById:
m_KeyList: []
m_ValueList:
m_Collapsed: 0
m_CurrentModeIndex: 0
m_ElementColor:
m_Color: {r: 0, g: 0, b: 0, a: 0}
m_HasUserColor: 0
m_Node:
rid: 4848514455607443664
- rid: 4848514455607443648
type: {class: WireModel, ns: Unity.GraphToolkit.Editor, asm: UnityEditor.GraphToolkitModule}
data:
m_Guid:
m_Value0: 10132703975558200609
m_Value1: 9238518778737162950
m_HashGuid:
serializedVersion: 2
Hash: 21bd559594989e8cc67a67a9e1cf3580
m_Version: 2
m_FromPortReference:
m_NodeModelGuid:
m_Value0: 5760401696664917696
m_Value1: 5304284838533059046
m_NodeModelHashGuid:
serializedVersion: 2
Hash: c01645bdd20ef14fe6d14014f59a9c49
m_UniqueId: Out
m_PortDirection: 2
m_PortOrientation: 0
m_Title:
m_ToPortReference:
m_NodeModelGuid:
m_Value0: 7868436636663145073
m_Value1: 9680455308751965230
m_NodeModelHashGuid:
serializedVersion: 2
Hash: 71e2f9a96e4d326d2e8c3466d0e25786
m_UniqueId: In
m_PortDirection: 1
m_PortOrientation: 0
m_Title:
- rid: 4848514455607443649
type: {class: 'Constant`1[[System.Int32, mscorlib]]', ns: Unity.GraphToolkit.Editor, asm: UnityEditor.GraphToolkitModule}
data:
m_Value: 0
- rid: 4848514455607443650
type: {class: 'Constant`1[[System.String, mscorlib]]', ns: Unity.GraphToolkit.Editor, asm: UnityEditor.GraphToolkitModule}
data:
m_Value:
- rid: 4848514455607443651
type: {class: 'Constant`1[[CharacterData, Assembly-CSharp]]', ns: Unity.GraphToolkit.Editor, asm: UnityEditor.GraphToolkitModule}
data:
m_Value: {fileID: 11400000, guid: b7c3c52c4e4e9fc49bf084eae180835b, type: 2}
- rid: 4848514455607443652
type: {class: 'Constant`1[[DinoLove.Dialog.GraphTool.Editor.DialogShortText, Assembly-CSharp-Editor]]', ns: Unity.GraphToolkit.Editor, asm: UnityEditor.GraphToolkitModule}
data:
m_Value:
Value:
- rid: 4848514455607443653
type: {class: 'Constant`1[[CharacterData, Assembly-CSharp]]', ns: Unity.GraphToolkit.Editor, asm: UnityEditor.GraphToolkitModule}
data:
m_Value: {fileID: 11400000, guid: b7c3c52c4e4e9fc49bf084eae180835b, type: 2}
- rid: 4848514455607443654
type: {class: 'Constant`1[[DinoLove.Dialog.GraphTool.Editor.DialogText, Assembly-CSharp-Editor]]', ns: Unity.GraphToolkit.Editor, asm: UnityEditor.GraphToolkitModule}
data:
m_Value:
Value: "\uB0B4\uB9D0\uC5D0 \uBB34\uC870\uAC74 \uBCF5\uC885\uD558\uB3C4\uB85D."
- rid: 4848514455607443655
type: {class: 'Constant`1[[GestureData, Assembly-CSharp]]', ns: Unity.GraphToolkit.Editor, asm: UnityEditor.GraphToolkitModule}
data:
m_Value: {fileID: 0}
- rid: 4848514455607443656
type: {class: 'Constant`1[[ExpressionData, Assembly-CSharp]]', ns: Unity.GraphToolkit.Editor, asm: UnityEditor.GraphToolkitModule}
data:
m_Value: {fileID: 0}
- rid: 4848514455607443657
type: {class: 'Constant`1[[VoiceClip, Assembly-CSharp]]', ns: Unity.GraphToolkit.Editor, asm: UnityEditor.GraphToolkitModule}
data:
m_Value: {fileID: 0}
- rid: 4848514455607443658
type: {class: 'Constant`1[[UnityEngine.AudioClip, UnityEngine.AudioModule]]', ns: Unity.GraphToolkit.Editor, asm: UnityEditor.GraphToolkitModule}
data:
m_Value: {fileID: 0}
- rid: 4848514455607443659
type: {class: 'Constant`1[[UnityEngine.GameObject, UnityEngine.CoreModule]]', ns: Unity.GraphToolkit.Editor, asm: UnityEditor.GraphToolkitModule}
data:
m_Value: {fileID: 0}
- rid: 4848514455607443660
type: {class: 'Constant`1[[System.Single, mscorlib]]', ns: Unity.GraphToolkit.Editor, asm: UnityEditor.GraphToolkitModule}
data:
m_Value: 3
- rid: 4848514455607443661
type: {class: 'Constant`1[[System.Boolean, mscorlib]]', ns: Unity.GraphToolkit.Editor, asm: UnityEditor.GraphToolkitModule}
data:
m_Value: 0
- rid: 4848514455607443662
type: {class: 'Constant`1[[System.Boolean, mscorlib]]', ns: Unity.GraphToolkit.Editor, asm: UnityEditor.GraphToolkitModule}
data:
m_Value: 0
- rid: 4848514455607443663
type: {class: 'Constant`1[[System.Boolean, mscorlib]]', ns: Unity.GraphToolkit.Editor, asm: UnityEditor.GraphToolkitModule}
data:
m_Value: 0
- rid: 4848514455607443664
type: {class: DialogLineNode, ns: DinoLove.Dialog.GraphTool.Editor, asm: Assembly-CSharp-Editor}
data:
- rid: 4848514455607443665
type: {class: UserNodeModelImp, ns: Unity.GraphToolkit.Editor.Implementation, asm: UnityEditor.GraphToolkitModule}
data:
m_Guid:
m_Value0: 4412835210894292992
m_Value1: 10243743053156541227
m_HashGuid:
serializedVersion: 2
Hash: 00b8b07d3e8a3d3d2b63c57d0816298e
m_Version: 2
m_Position: {x: 1124.2087, y: 94.006}
m_Title:
m_Tooltip:
m_NodePreviewModel:
rid: -2
m_State: 0
m_InputConstantsById:
m_KeyList:
- __option_ChoiceCount
- __option_EventKey
- Speaker
- SpeakerNameOverride
- HudAnchor
- TalkText
- Gesture
- Expression
- Voice
- Bgm
- Vfx
- LineDuration
- LookAtPlayer
- ForcePlayerLook
- WaitForInput
m_ValueList:
- rid: 4848514455607443667
- rid: 4848514455607443668
- rid: 4848514455607443669
- rid: 4848514455607443670
- rid: 4848514455607443671
- rid: 4848514455607443672
- rid: 4848514455607443673
- rid: 4848514455607443674
- rid: 4848514455607443675
- rid: 4848514455607443676
- rid: 4848514455607443677
- rid: 4848514455607443678
- rid: 4848514455607443679
- rid: 4848514455607443680
- rid: 4848514455607443681
m_InputPortInfos:
expandedPortsById:
m_KeyList: []
m_ValueList:
m_OutputPortInfos:
expandedPortsById:
m_KeyList: []
m_ValueList:
m_Collapsed: 0
m_CurrentModeIndex: 0
m_ElementColor:
m_Color: {r: 0, g: 0, b: 0, a: 0}
m_HasUserColor: 0
m_Node:
rid: 4848514455607443682
- rid: 4848514455607443666
type: {class: WireModel, ns: Unity.GraphToolkit.Editor, asm: UnityEditor.GraphToolkitModule}
data:
m_Guid:
m_Value0: 3944798219258409999
m_Value1: 9598804950413504815
m_HashGuid:
serializedVersion: 2
Hash: 0fb47d7914bdbe362f71a8e93ece3585
m_Version: 2
m_FromPortReference:
m_NodeModelGuid:
m_Value0: 7868436636663145073
m_Value1: 9680455308751965230
m_NodeModelHashGuid:
serializedVersion: 2
Hash: 71e2f9a96e4d326d2e8c3466d0e25786
m_UniqueId: Out
m_PortDirection: 2
m_PortOrientation: 0
m_Title:
m_ToPortReference:
m_NodeModelGuid:
m_Value0: 4412835210894292992
m_Value1: 10243743053156541227
m_NodeModelHashGuid:
serializedVersion: 2
Hash: 00b8b07d3e8a3d3d2b63c57d0816298e
m_UniqueId: In
m_PortDirection: 1
m_PortOrientation: 0
m_Title:
- rid: 4848514455607443667
type: {class: 'Constant`1[[System.Int32, mscorlib]]', ns: Unity.GraphToolkit.Editor, asm: UnityEditor.GraphToolkitModule}
data:
m_Value: 0
- rid: 4848514455607443668
type: {class: 'Constant`1[[System.String, mscorlib]]', ns: Unity.GraphToolkit.Editor, asm: UnityEditor.GraphToolkitModule}
data:
m_Value:
- rid: 4848514455607443669
type: {class: 'Constant`1[[CharacterData, Assembly-CSharp]]', ns: Unity.GraphToolkit.Editor, asm: UnityEditor.GraphToolkitModule}
data:
m_Value: {fileID: 11400000, guid: b7c3c52c4e4e9fc49bf084eae180835b, type: 2}
- rid: 4848514455607443670
type: {class: 'Constant`1[[DinoLove.Dialog.GraphTool.Editor.DialogShortText, Assembly-CSharp-Editor]]', ns: Unity.GraphToolkit.Editor, asm: UnityEditor.GraphToolkitModule}
data:
m_Value:
Value:
- rid: 4848514455607443671
type: {class: 'Constant`1[[CharacterData, Assembly-CSharp]]', ns: Unity.GraphToolkit.Editor, asm: UnityEditor.GraphToolkitModule}
data:
m_Value: {fileID: 11400000, guid: b7c3c52c4e4e9fc49bf084eae180835b, type: 2}
- rid: 4848514455607443672
type: {class: 'Constant`1[[DinoLove.Dialog.GraphTool.Editor.DialogText, Assembly-CSharp-Editor]]', ns: Unity.GraphToolkit.Editor, asm: UnityEditor.GraphToolkitModule}
data:
m_Value:
Value: "\uC73C\uD558\uD558\uD558\uD558!"
- rid: 4848514455607443673
type: {class: 'Constant`1[[GestureData, Assembly-CSharp]]', ns: Unity.GraphToolkit.Editor, asm: UnityEditor.GraphToolkitModule}
data:
m_Value: {fileID: 0}
- rid: 4848514455607443674
type: {class: 'Constant`1[[ExpressionData, Assembly-CSharp]]', ns: Unity.GraphToolkit.Editor, asm: UnityEditor.GraphToolkitModule}
data:
m_Value: {fileID: 0}
- rid: 4848514455607443675
type: {class: 'Constant`1[[VoiceClip, Assembly-CSharp]]', ns: Unity.GraphToolkit.Editor, asm: UnityEditor.GraphToolkitModule}
data:
m_Value: {fileID: 0}
- rid: 4848514455607443676
type: {class: 'Constant`1[[UnityEngine.AudioClip, UnityEngine.AudioModule]]', ns: Unity.GraphToolkit.Editor, asm: UnityEditor.GraphToolkitModule}
data:
m_Value: {fileID: 0}
- rid: 4848514455607443677
type: {class: 'Constant`1[[UnityEngine.GameObject, UnityEngine.CoreModule]]', ns: Unity.GraphToolkit.Editor, asm: UnityEditor.GraphToolkitModule}
data:
m_Value: {fileID: 0}
- rid: 4848514455607443678
type: {class: 'Constant`1[[System.Single, mscorlib]]', ns: Unity.GraphToolkit.Editor, asm: UnityEditor.GraphToolkitModule}
data:
m_Value: 3
- rid: 4848514455607443679
type: {class: 'Constant`1[[System.Boolean, mscorlib]]', ns: Unity.GraphToolkit.Editor, asm: UnityEditor.GraphToolkitModule}
data:
m_Value: 0
- rid: 4848514455607443680
type: {class: 'Constant`1[[System.Boolean, mscorlib]]', ns: Unity.GraphToolkit.Editor, asm: UnityEditor.GraphToolkitModule}
data:
m_Value: 0
- rid: 4848514455607443681
type: {class: 'Constant`1[[System.Boolean, mscorlib]]', ns: Unity.GraphToolkit.Editor, asm: UnityEditor.GraphToolkitModule}
data:
m_Value: 0
- rid: 4848514455607443682
type: {class: DialogLineNode, ns: DinoLove.Dialog.GraphTool.Editor, asm: Assembly-CSharp-Editor}
data:

View File

@@ -0,0 +1,10 @@
fileFormatVersion: 2
guid: f4cf450f21f8eee418557d34d68c0726
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 2
userData:
assetBundleName:
assetBundleVariant:
script: {fileID: 11500000, guid: 2ae5ca89bbed445479d9023586f0c041, type: 3}

View File

@@ -153,7 +153,7 @@ AnimationClip:
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- serializedVersion: 3
time: 13.083333
time: 11.65
value: {x: 0, y: 270, z: 0}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
@@ -162,8 +162,44 @@ AnimationClip:
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- serializedVersion: 3
time: 13.766666
value: {x: 0, y: 475.5891, z: 0}
time: 12.166667
value: {x: 0, y: 180, z: 0}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- serializedVersion: 3
time: 13.1
value: {x: 0, y: 180, z: 0}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- serializedVersion: 3
time: 13.55
value: {x: 0, y: 270, z: 0}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- serializedVersion: 3
time: 15.083333
value: {x: 0, y: 270, z: 0}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- serializedVersion: 3
time: 15.566667
value: {x: 0, y: 83.4, z: 0}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
@@ -208,15 +244,51 @@ AnimationClip:
- serializedVersion: 3
time: 9
value: {x: 11.560989, y: 0, z: -14.172001}
inSlope: {x: -0.000004199667, y: 0, z: 0}
outSlope: {x: -0.000004199667, y: 0, z: 0}
inSlope: {x: -0.0000049865325, y: 0, z: 0}
outSlope: {x: -0.0000049865325, y: 0, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- serializedVersion: 3
time: 13.083333
value: {x: -4.9590006, y: 0, z: -14.171995}
time: 11.65
value: {x: -0.37338734, y: 0, z: -14.171997}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- serializedVersion: 3
time: 12.183333
value: {x: -0.37338734, y: 0, z: -14.171997}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- serializedVersion: 3
time: 13.1
value: {x: -0.37338734, y: 0, z: -15.771999}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- serializedVersion: 3
time: 13.55
value: {x: -0.37338734, y: 0, z: -15.771999}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- serializedVersion: 3
time: 15.083333
value: {x: -5.699001, y: 0, z: -15.771996}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
@@ -263,7 +335,7 @@ AnimationClip:
m_AdditiveReferencePoseClip: {fileID: 0}
m_AdditiveReferencePoseTime: 0
m_StartTime: 0
m_StopTime: 13.766666
m_StopTime: 15.566667
m_OrientationOffsetY: 0
m_Level: 0
m_CycleOffset: 0
@@ -320,7 +392,43 @@ AnimationClip:
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 13.766666
time: 11.65
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 12.166667
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 13.1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 13.55
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 15.083333
value: 0
inSlope: 0
outSlope: 0
@@ -413,7 +521,7 @@ AnimationClip:
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 13.083333
time: 11.65
value: 270
inSlope: 0
outSlope: 0
@@ -422,8 +530,44 @@ AnimationClip:
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 13.766666
value: 475.5891
time: 12.166667
value: 180
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 13.1
value: 180
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 13.55
value: 270
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 15.083333
value: 270
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 15.566667
value: 83.4
inSlope: 0
outSlope: 0
tangentMode: 136
@@ -479,7 +623,43 @@ AnimationClip:
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 13.766666
time: 11.65
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 12.166667
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 13.1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 13.55
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 15.083333
value: 0
inSlope: 0
outSlope: 0
@@ -529,15 +709,51 @@ AnimationClip:
- serializedVersion: 3
time: 9
value: 11.560989
inSlope: -0.000004199667
outSlope: -0.000004199667
inSlope: -0.0000049865325
outSlope: -0.0000049865325
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 13.083333
value: -4.9590006
time: 11.65
value: -0.37338734
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 12.183333
value: -0.37338734
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 13.1
value: -0.37338734
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 13.55
value: -0.37338734
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 15.083333
value: -5.699001
inSlope: 0
outSlope: 0
tangentMode: 136
@@ -593,7 +809,43 @@ AnimationClip:
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 13.083333
time: 11.65
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 12.183333
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 13.1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 13.55
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 15.083333
value: 0
inSlope: 0
outSlope: 0
@@ -650,8 +902,44 @@ AnimationClip:
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 13.083333
value: -14.171995
time: 11.65
value: -14.171997
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 12.183333
value: -14.171997
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 13.1
value: -15.771999
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 13.55
value: -15.771999
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 15.083333
value: -15.771996
inSlope: 0
outSlope: 0
tangentMode: 136

8
Assets/10_FX/VFX.meta Normal file
View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: c10b53e377a7670458a3720af3fcd84f
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

View File

@@ -1,6 +1,6 @@
fileFormatVersion: 2
guid: 7530a7fb61198524fab3dfead862b4d7
TextScriptImporter:
guid: e55c850a81ea79d4ebcbd00e9ba65609
PrefabImporter:
externalObjects: {}
userData:
assetBundleName:

View File

@@ -1 +0,0 @@
dumy

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 5d373ef61754c7c41b7ca6790e81b35d
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

View File

@@ -0,0 +1,23 @@
fileFormatVersion: 2
guid: b6c3006047634cc4c8a489dab79d30ba
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: