Made effects + poison
This commit is contained in:
parent
f729214d52
commit
000271132a
Binary file not shown.
|
@ -135,6 +135,7 @@ GameObject:
|
|||
- component: {fileID: 1821969146}
|
||||
- component: {fileID: 1821969148}
|
||||
- component: {fileID: 1821969149}
|
||||
- component: {fileID: 1821969150}
|
||||
m_Layer: 0
|
||||
m_Name: DataHolder
|
||||
m_TagString: Untagged
|
||||
|
@ -291,3 +292,15 @@ AudioListener:
|
|||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 1821969145}
|
||||
m_Enabled: 0
|
||||
--- !u!114 &1821969150
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 1821969145}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: 28a7b70cce701c64c8157922e23b706c, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
|
|
|
@ -96,7 +96,7 @@ public class Card : MonoBehaviour
|
|||
//ВАРНИНГ! НЕ РАБОТАЕТ С КАРТАМИ НА -ЗДОРОВЬЕ!!
|
||||
int _stamina = DeckManager.main.stamina;
|
||||
if (_stamina < cardConfig.CardCharacteristics.quantityStamina) return;
|
||||
if (_card.specialization == Specialization.healing)
|
||||
else if (_card.specialization == Specialization.healing)
|
||||
{
|
||||
if (_card.addStamina > 0)
|
||||
{
|
||||
|
|
|
@ -70,6 +70,7 @@ public class CardCharacteristics
|
|||
{
|
||||
public CardEffects effect;
|
||||
public int turns;
|
||||
public int damage;
|
||||
}
|
||||
|
||||
public ListEffects[] effects;
|
||||
|
|
|
@ -22,14 +22,10 @@ MonoBehaviour:
|
|||
quantityHealth: 0
|
||||
damage: 0
|
||||
addHealth: 0
|
||||
addStamina: 1
|
||||
addStamina: 2
|
||||
addArmor: 0
|
||||
enemyCount: 0
|
||||
effects:
|
||||
- effect: 0
|
||||
turns: 1
|
||||
- effect: 1
|
||||
turns: 2
|
||||
effects: []
|
||||
quantityStamina2: 0
|
||||
quantityHealth2: 0
|
||||
damage2: 0
|
||||
|
|
|
@ -17,9 +17,21 @@ MonoBehaviour:
|
|||
picture: {fileID: 21300000, guid: 49fd699074bfe8742b2664b5fd5b5396, type: 3}
|
||||
description:
|
||||
specialization: 1
|
||||
improvedLevel: 0
|
||||
quantityStamina: 1
|
||||
quantityHealth: 0
|
||||
damage: 3
|
||||
healing: 0
|
||||
addHealth: 0
|
||||
addStamina: 0
|
||||
armor: 0
|
||||
addArmor: 0
|
||||
enemyCount: 0
|
||||
effects:
|
||||
- effect: 0
|
||||
turns: 1
|
||||
damage: 1
|
||||
quantityStamina2: 0
|
||||
quantityHealth2: 0
|
||||
damage2: 0
|
||||
addHealth2: 0
|
||||
addStamina2: 0
|
||||
addArmor2: 0
|
||||
|
|
|
@ -5,6 +5,8 @@ using UnityEngine.UI;
|
|||
|
||||
public class DeckManager : MonoBehaviour
|
||||
{
|
||||
public int turn = 0;
|
||||
|
||||
public static DeckManager main;
|
||||
[SerializeField] private List<GameObject> deck = new List<GameObject>();
|
||||
[SerializeField] private List<Transform> cardsPosition = new List<Transform>();
|
||||
|
@ -128,7 +130,12 @@ public class DeckManager : MonoBehaviour
|
|||
if (enemyTurn)
|
||||
StartCoroutine(EnemyStep());
|
||||
//а, вот же она
|
||||
turn += 1;
|
||||
|
||||
for (int i = 0; i < Session.main.currentEnemies.Count; i++)
|
||||
{
|
||||
Session.main.currentEnemies[i].GetComponent<Enemy>().EffectsBy();
|
||||
}
|
||||
}
|
||||
public void MarkersRegulator()
|
||||
{
|
||||
|
@ -175,6 +182,16 @@ public class DeckManager : MonoBehaviour
|
|||
|
||||
var _local = (int)currentCard.CardCharacteristics.enemyCount;
|
||||
|
||||
if(currentCard.CardCharacteristics.effects.Length > 0)
|
||||
{
|
||||
for (int i = 0; i < currentCard.CardCharacteristics.effects.Length; i++)
|
||||
{
|
||||
enemy.effectsName.Add(currentCard.CardCharacteristics.effects[i].effect.ToString());
|
||||
enemy.effectsDamage.Add(currentCard.CardCharacteristics.effects[i].damage);
|
||||
enemy.effectsTurns.Add(currentCard.CardCharacteristics.effects[i].turns);
|
||||
}
|
||||
}
|
||||
|
||||
if (_local != 0)
|
||||
{
|
||||
MassiveAttack(_local);
|
||||
|
|
|
@ -5,7 +5,8 @@ using UnityEngine.Events;
|
|||
using UnityEngine.UI;
|
||||
|
||||
public class Enemy : MonoBehaviour
|
||||
{
|
||||
{
|
||||
|
||||
[SerializeField] private Image enemyStepIcon;
|
||||
[SerializeField] private Text enemyStepIconText;
|
||||
|
||||
|
@ -29,6 +30,10 @@ public class Enemy : MonoBehaviour
|
|||
[SerializeField] private Image armorIcon;
|
||||
[SerializeField] private Text armorText;
|
||||
|
||||
public List<string> effectsName = new List<string>();
|
||||
public List<int> effectsTurns = new List<int>();
|
||||
public List<int> effectsDamage = new List<int>();
|
||||
|
||||
private void Start()
|
||||
{
|
||||
NewInformation();
|
||||
|
@ -116,6 +121,24 @@ public class Enemy : MonoBehaviour
|
|||
|
||||
}
|
||||
|
||||
public void EffectsBy()
|
||||
{
|
||||
for (int i = 0; i < effectsName.Count; i++)
|
||||
{
|
||||
if(effectsTurns[i] == 0)
|
||||
{
|
||||
effectsName.Remove(effectsName[i]);
|
||||
effectsTurns.Remove(effectsTurns[i]);
|
||||
effectsDamage.Remove(effectsDamage[i]);
|
||||
}
|
||||
else if(effectsName[i] == "poison")
|
||||
{
|
||||
LibraryEffects.main.Poison(gameObject, effectsDamage[i]);
|
||||
effectsTurns[i] -= 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public void UpdateNextStepIconAndText()
|
||||
{
|
||||
int _phase = phaseAttack % attackLoop.Count;
|
||||
|
@ -163,7 +186,6 @@ public class Enemy : MonoBehaviour
|
|||
UpdateNextStepIconAndText();
|
||||
}
|
||||
|
||||
|
||||
public int CheckHp()
|
||||
{
|
||||
return hp;
|
||||
|
|
|
@ -0,0 +1,18 @@
|
|||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
public class LibraryEffects : MonoBehaviour
|
||||
{
|
||||
public static LibraryEffects main;
|
||||
|
||||
public void Start()
|
||||
{
|
||||
main = this;
|
||||
}
|
||||
|
||||
public void Poison(GameObject _enemy, int _damage)
|
||||
{
|
||||
_enemy.GetComponent<Enemy>().ChangeHp(_damage);
|
||||
}
|
||||
}
|
|
@ -0,0 +1,11 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 28a7b70cce701c64c8157922e23b706c
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
|
@ -122,10 +122,12 @@ public class Session : MonoBehaviour
|
|||
public void Victory()
|
||||
{
|
||||
onVictory?.Invoke();
|
||||
DeckManager.main.turn = 0;
|
||||
}
|
||||
public void Defeat()
|
||||
{
|
||||
onDefeat?.Invoke();
|
||||
DeckManager.main.turn = 0;
|
||||
}
|
||||
public void Inventory()
|
||||
{
|
||||
|
|
Binary file not shown.
|
@ -19,7 +19,7 @@ MonoBehaviour:
|
|||
width: 1920
|
||||
height: 997
|
||||
m_ShowMode: 4
|
||||
m_Title: Inspector
|
||||
m_Title: Game
|
||||
m_RootView: {fileID: 6}
|
||||
m_MinSize: {x: 875, y: 542}
|
||||
m_MaxSize: {x: 10000, y: 10000}
|
||||
|
@ -45,10 +45,10 @@ MonoBehaviour:
|
|||
y: 30
|
||||
width: 1920
|
||||
height: 947
|
||||
m_MinSize: {x: 679, y: 492}
|
||||
m_MaxSize: {x: 14002, y: 14042}
|
||||
m_MinSize: {x: 678, y: 492}
|
||||
m_MaxSize: {x: 14001, y: 14042}
|
||||
vertical: 0
|
||||
controlID: 76
|
||||
controlID: 37
|
||||
--- !u!114 &3
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 52
|
||||
|
@ -68,8 +68,8 @@ MonoBehaviour:
|
|||
y: 0
|
||||
width: 389
|
||||
height: 947
|
||||
m_MinSize: {x: 276, y: 71}
|
||||
m_MaxSize: {x: 4001, y: 4021}
|
||||
m_MinSize: {x: 275, y: 50}
|
||||
m_MaxSize: {x: 4000, y: 4000}
|
||||
m_ActualView: {fileID: 15}
|
||||
m_Panes:
|
||||
- {fileID: 15}
|
||||
|
@ -151,7 +151,7 @@ MonoBehaviour:
|
|||
y: 0
|
||||
width: 1920
|
||||
height: 997
|
||||
m_MinSize: {x: 875, y: 542}
|
||||
m_MinSize: {x: 875, y: 300}
|
||||
m_MaxSize: {x: 10000, y: 10000}
|
||||
m_UseTopView: 1
|
||||
m_TopViewHeight: 30
|
||||
|
@ -227,7 +227,7 @@ MonoBehaviour:
|
|||
m_MinSize: {x: 403, y: 492}
|
||||
m_MaxSize: {x: 10001, y: 14042}
|
||||
vertical: 1
|
||||
controlID: 122
|
||||
controlID: 38
|
||||
--- !u!114 &10
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 52
|
||||
|
@ -252,7 +252,7 @@ MonoBehaviour:
|
|||
m_MinSize: {x: 403, y: 221}
|
||||
m_MaxSize: {x: 8003, y: 4021}
|
||||
vertical: 0
|
||||
controlID: 104
|
||||
controlID: 39
|
||||
--- !u!114 &11
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 52
|
||||
|
@ -272,8 +272,8 @@ MonoBehaviour:
|
|||
y: 0
|
||||
width: 1152
|
||||
height: 589
|
||||
m_MinSize: {x: 202, y: 221}
|
||||
m_MaxSize: {x: 4002, y: 4021}
|
||||
m_MinSize: {x: 200, y: 200}
|
||||
m_MaxSize: {x: 4000, y: 4000}
|
||||
m_ActualView: {fileID: 18}
|
||||
m_Panes:
|
||||
- {fileID: 17}
|
||||
|
@ -352,7 +352,7 @@ MonoBehaviour:
|
|||
m_Pos:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 608
|
||||
y: 662
|
||||
width: 1530
|
||||
height: 337
|
||||
m_ViewDataDictionary: {fileID: 0}
|
||||
|
@ -369,22 +369,22 @@ MonoBehaviour:
|
|||
m_SkipHidden: 0
|
||||
m_SearchArea: 1
|
||||
m_Folders:
|
||||
- Assets/Scripts
|
||||
- Assets/Scripts/Configs/CardConfigs
|
||||
m_Globs: []
|
||||
m_OriginalText:
|
||||
m_ViewMode: 1
|
||||
m_StartGridSize: 64
|
||||
m_LastFolders:
|
||||
- Assets/Scripts
|
||||
- Assets/Scripts/Configs/CardConfigs
|
||||
m_LastFoldersGridSize: -1
|
||||
m_LastProjectPath: "E:\\Projects \u0441#\\Unity\\omega"
|
||||
m_LockTracker:
|
||||
m_IsLocked: 0
|
||||
m_FolderTreeState:
|
||||
scrollPos: {x: 0, y: 19}
|
||||
m_SelectedIDs: 18470000
|
||||
m_LastClickedID: 18200
|
||||
m_ExpandedIDs: 0000000006470000184700001e47000000ca9a3b
|
||||
scrollPos: {x: 0, y: 0}
|
||||
m_SelectedIDs: 00570000
|
||||
m_LastClickedID: 22272
|
||||
m_ExpandedIDs: 00000000084700001a4700001e47000000ca9a3b
|
||||
m_RenameOverlay:
|
||||
m_UserAcceptedRename: 0
|
||||
m_Name:
|
||||
|
@ -412,7 +412,7 @@ MonoBehaviour:
|
|||
scrollPos: {x: 0, y: 0}
|
||||
m_SelectedIDs:
|
||||
m_LastClickedID: 0
|
||||
m_ExpandedIDs: 0000000006470000
|
||||
m_ExpandedIDs: 0000000008470000
|
||||
m_RenameOverlay:
|
||||
m_UserAcceptedRename: 0
|
||||
m_Name:
|
||||
|
@ -526,16 +526,16 @@ MonoBehaviour:
|
|||
m_Pos:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 19
|
||||
y: 73
|
||||
width: 378
|
||||
height: 568
|
||||
m_ViewDataDictionary: {fileID: 0}
|
||||
m_SceneHierarchy:
|
||||
m_TreeViewState:
|
||||
scrollPos: {x: 0, y: 0}
|
||||
m_SelectedIDs: ae0d0000
|
||||
m_SelectedIDs: 064e0000
|
||||
m_LastClickedID: 0
|
||||
m_ExpandedIDs:
|
||||
m_ExpandedIDs: d461ffff7e71ffffca85ffffc8a2ffffa8b3ffffacbdfffff0c2ffff10c8ffffe2c9ffffd6e7ffff1ef4ffff3efbffff40fbffffaa600000b2600000be600000d2600000fc6000000a6100003e64000052640000666400009e6400008c6a0000b46a0000de6a0000ec6a0000507100007c71000026730000387300004e730000527300004c7700005e77000078770000dc7a0000ee7a0000087b0000847e0000967e0000b07e0000e6820000f8820000128300007e86000090860000aa860000
|
||||
m_RenameOverlay:
|
||||
m_UserAcceptedRename: 0
|
||||
m_Name:
|
||||
|
@ -695,8 +695,8 @@ MonoBehaviour:
|
|||
m_Tooltip:
|
||||
m_Pos:
|
||||
serializedVersion: 2
|
||||
x: 380
|
||||
y: 19
|
||||
x: 379
|
||||
y: 73
|
||||
width: 1150
|
||||
height: 568
|
||||
m_ViewDataDictionary: {fileID: 0}
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,227 @@
|
|||
Using pre-set license
|
||||
Built from '2020.3/staging' branch; Version is '2020.3.19f1 (68f137dc9bbe) revision 6877495'; Using compiler version '192528614'; Build Type 'Release'
|
||||
OS: 'Windows 10 Pro; OS build 19043.1415; Version 2009; 64bit' Language: 'ru' Physical Memory: 32637 MB
|
||||
BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 0
|
||||
|
||||
COMMAND LINE ARGUMENTS:
|
||||
C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\Unity.exe
|
||||
-adb2
|
||||
-batchMode
|
||||
-noUpm
|
||||
-name
|
||||
AssetImportWorker0
|
||||
-projectPath
|
||||
E:/Projects с#/Unity/omega
|
||||
-logFile
|
||||
Logs/AssetImportWorker0.log
|
||||
-srvPort
|
||||
49643
|
||||
Successfully changed project path to: E:/Projects с#/Unity/omega
|
||||
E:/Projects с#/Unity/omega
|
||||
Using Asset Import Pipeline V2.
|
||||
Refreshing native plugins compatible for Editor in 31.57 ms, found 3 plugins.
|
||||
Preloading 0 native plugins for Editor in 0.00 ms.
|
||||
Initialize engine version: 2020.3.19f1 (68f137dc9bbe)
|
||||
[Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/Resources/UnitySubsystems
|
||||
[Subsystems] Discovering subsystems at path E:/Projects с#/Unity/omega/Assets
|
||||
GfxDevice: creating device client; threaded=0
|
||||
Direct3D:
|
||||
Version: Direct3D 11.0 [level 11.0]
|
||||
Renderer: NVIDIA GeForce GT 730 (ID=0x1287)
|
||||
Vendor:
|
||||
VRAM: 984 MB
|
||||
Driver: 30.0.14.7298
|
||||
Initialize mono
|
||||
Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/Managed'
|
||||
Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit'
|
||||
Mono config path = 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/MonoBleedingEdge/etc'
|
||||
Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56576
|
||||
Begin MonoManager ReloadAssembly
|
||||
Registering precompiled unity dll's ...
|
||||
Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll
|
||||
Registered in 0.001138 seconds.
|
||||
Native extension for WindowsStandalone target not found
|
||||
Refreshing native plugins compatible for Editor in 34.70 ms, found 3 plugins.
|
||||
Preloading 0 native plugins for Editor in 0.00 ms.
|
||||
Mono: successfully reloaded assembly
|
||||
- Completed reload, in 1.479 seconds
|
||||
Domain Reload Profiling:
|
||||
ReloadAssembly (1479ms)
|
||||
BeginReloadAssembly (38ms)
|
||||
ExecutionOrderSort (0ms)
|
||||
DisableScriptedObjects (0ms)
|
||||
BackupInstance (0ms)
|
||||
ReleaseScriptingObjects (0ms)
|
||||
CreateAndSetChildDomain (1ms)
|
||||
EndReloadAssembly (293ms)
|
||||
LoadAssemblies (36ms)
|
||||
RebuildTransferFunctionScriptingTraits (0ms)
|
||||
SetupTypeCache (95ms)
|
||||
ReleaseScriptCaches (0ms)
|
||||
RebuildScriptCaches (23ms)
|
||||
SetupLoadedEditorAssemblies (125ms)
|
||||
LogAssemblyErrors (0ms)
|
||||
InitializePlatformSupportModulesInManaged (3ms)
|
||||
SetLoadedEditorAssemblies (0ms)
|
||||
RefreshPlugins (35ms)
|
||||
BeforeProcessingInitializeOnLoad (12ms)
|
||||
ProcessInitializeOnLoadAttributes (55ms)
|
||||
ProcessInitializeOnLoadMethodAttributes (19ms)
|
||||
AfterProcessingInitializeOnLoad (0ms)
|
||||
EditorAssembliesLoaded (0ms)
|
||||
ExecutionOrderSort2 (0ms)
|
||||
AwakeInstancesAfterBackupRestoration (0ms)
|
||||
Platform modules already initialized, skipping
|
||||
Registering precompiled user dll's ...
|
||||
Registered in 0.001227 seconds.
|
||||
Begin MonoManager ReloadAssembly
|
||||
Native extension for WindowsStandalone target not found
|
||||
Refreshing native plugins compatible for Editor in 29.55 ms, found 3 plugins.
|
||||
Preloading 0 native plugins for Editor in 0.00 ms.
|
||||
Mono: successfully reloaded assembly
|
||||
- Completed reload, in 0.769 seconds
|
||||
Domain Reload Profiling:
|
||||
ReloadAssembly (770ms)
|
||||
BeginReloadAssembly (94ms)
|
||||
ExecutionOrderSort (0ms)
|
||||
DisableScriptedObjects (3ms)
|
||||
BackupInstance (0ms)
|
||||
ReleaseScriptingObjects (0ms)
|
||||
CreateAndSetChildDomain (13ms)
|
||||
EndReloadAssembly (635ms)
|
||||
LoadAssemblies (82ms)
|
||||
RebuildTransferFunctionScriptingTraits (0ms)
|
||||
SetupTypeCache (182ms)
|
||||
ReleaseScriptCaches (0ms)
|
||||
RebuildScriptCaches (37ms)
|
||||
SetupLoadedEditorAssemblies (250ms)
|
||||
LogAssemblyErrors (0ms)
|
||||
InitializePlatformSupportModulesInManaged (3ms)
|
||||
SetLoadedEditorAssemblies (0ms)
|
||||
RefreshPlugins (30ms)
|
||||
BeforeProcessingInitializeOnLoad (57ms)
|
||||
ProcessInitializeOnLoadAttributes (148ms)
|
||||
ProcessInitializeOnLoadMethodAttributes (9ms)
|
||||
AfterProcessingInitializeOnLoad (4ms)
|
||||
EditorAssembliesLoaded (0ms)
|
||||
ExecutionOrderSort2 (0ms)
|
||||
AwakeInstancesAfterBackupRestoration (5ms)
|
||||
Platform modules already initialized, skipping
|
||||
========================================================================
|
||||
Worker process is ready to serve import requests
|
||||
Launched and connected shader compiler UnityShaderCompiler.exe after 0.03 seconds
|
||||
Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins.
|
||||
Preloading 0 native plugins for Editor in 0.00 ms.
|
||||
Unloading 2140 Unused Serialized files (Serialized files now loaded: 0)
|
||||
System memory in use before: 96.3 MB.
|
||||
System memory in use after: 96.4 MB.
|
||||
|
||||
Unloading 26 unused Assets to reduce memory usage. Loaded Objects now: 2581.
|
||||
Total: 2.295200 ms (FindLiveObjects: 0.156800 ms CreateObjectMapping: 0.072300 ms MarkObjects: 2.006500 ms DeleteObjects: 0.058600 ms)
|
||||
|
||||
AssetImportParameters requested are different than current active one (requested -> active):
|
||||
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
|
||||
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
|
||||
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
|
||||
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
|
||||
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
|
||||
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
|
||||
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
|
||||
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
||||
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
||||
========================================================================
|
||||
Received Import Request.
|
||||
path: Assets/Scripts/Configs/CardConfigs/AddStamina.asset
|
||||
artifactKey: Guid(6edd37042b6a0064ba2364da30fe92c9) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
|
||||
Start importing Assets/Scripts/Configs/CardConfigs/AddStamina.asset using Guid(6edd37042b6a0064ba2364da30fe92c9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5a9b63abf63e24e242c0581a86d28474') in 0.023246 seconds
|
||||
Import took 0.025646 seconds .
|
||||
|
||||
========================================================================
|
||||
Received Import Request.
|
||||
Time since last request: 10.133121 seconds.
|
||||
path: Assets/Inventory/EquipmentInfo.cs
|
||||
artifactKey: Guid(44c83c0ad93548d40b9c45534abc94c2) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
|
||||
Start importing Assets/Inventory/EquipmentInfo.cs using Guid(44c83c0ad93548d40b9c45534abc94c2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '40c8c45303c692ec96973921b2bd44d5') in 0.002158 seconds
|
||||
Import took 0.004618 seconds .
|
||||
|
||||
========================================================================
|
||||
Received Import Request.
|
||||
Time since last request: 36.114408 seconds.
|
||||
path: Assets/Scripts/CanvasChanger.cs
|
||||
artifactKey: Guid(7feed73df43e92845adff59e1a91f2d8) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
|
||||
Start importing Assets/Scripts/CanvasChanger.cs using Guid(7feed73df43e92845adff59e1a91f2d8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '604dc8df25656549d86a14fcf5351435') in 0.000991 seconds
|
||||
Import took 0.003540 seconds .
|
||||
|
||||
========================================================================
|
||||
Received Import Request.
|
||||
Time since last request: 0.945991 seconds.
|
||||
path: Assets/Scripts/Card.cs
|
||||
artifactKey: Guid(c0cf382e614d3e84194ce693591df5d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
|
||||
Start importing Assets/Scripts/Card.cs using Guid(c0cf382e614d3e84194ce693591df5d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '46d7f80093a681c039eacf810c786262') in 0.017525 seconds
|
||||
Import took 0.020597 seconds .
|
||||
|
||||
========================================================================
|
||||
Received Import Request.
|
||||
Time since last request: 1.902750 seconds.
|
||||
path: Assets/Scripts/DataHolder.cs
|
||||
artifactKey: Guid(7dc4bce8f5915e742a365be001dbc164) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
|
||||
Start importing Assets/Scripts/DataHolder.cs using Guid(7dc4bce8f5915e742a365be001dbc164) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6c3a93872dab6f91159d5768af8ca474') in 0.000975 seconds
|
||||
Import took 0.003305 seconds .
|
||||
|
||||
========================================================================
|
||||
Received Import Request.
|
||||
Time since last request: 2.069588 seconds.
|
||||
path: Assets/Scripts/DeckManager.cs
|
||||
artifactKey: Guid(dee7bf68184e7d345b01f75f8ee9197b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
|
||||
Start importing Assets/Scripts/DeckManager.cs using Guid(dee7bf68184e7d345b01f75f8ee9197b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ecd4088ebdfcccb2443b229320a793fc') in 0.000872 seconds
|
||||
Import took 0.006997 seconds .
|
||||
|
||||
========================================================================
|
||||
Received Import Request.
|
||||
Time since last request: 3.497285 seconds.
|
||||
path: Assets/Scripts/MainCamera.cs
|
||||
artifactKey: Guid(92d6b3dda9f50f74ab31bbba09e20198) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
|
||||
Start importing Assets/Scripts/MainCamera.cs using Guid(92d6b3dda9f50f74ab31bbba09e20198) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f5037473e016824f57606053dd96b17a') in 0.000864 seconds
|
||||
Import took 0.003155 seconds .
|
||||
|
||||
========================================================================
|
||||
Received Import Request.
|
||||
Time since last request: 0.659964 seconds.
|
||||
path: Assets/Scripts/PhaseCounter.cs
|
||||
artifactKey: Guid(89e4f147f32af244891dae70ac1f1e56) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
|
||||
Start importing Assets/Scripts/PhaseCounter.cs using Guid(89e4f147f32af244891dae70ac1f1e56) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6ef274466a69d4197892fcd776f5aef5') in 0.018417 seconds
|
||||
Import took 0.039086 seconds .
|
||||
|
||||
========================================================================
|
||||
Received Import Request.
|
||||
Time since last request: 1.962628 seconds.
|
||||
path: Assets/Scripts/Player.cs
|
||||
artifactKey: Guid(a797a7d28ee3d2d4c85df06375b9a2c7) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
|
||||
Start importing Assets/Scripts/Player.cs using Guid(a797a7d28ee3d2d4c85df06375b9a2c7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3beb4b093af24f4210a6a3334057033d') in 0.001150 seconds
|
||||
Import took 0.003587 seconds .
|
||||
|
||||
========================================================================
|
||||
Received Import Request.
|
||||
Time since last request: 3.052400 seconds.
|
||||
path: Assets/Scripts/SceneLoader.cs
|
||||
artifactKey: Guid(d4ce3529c31929f42bea98b7e58d93de) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
|
||||
Start importing Assets/Scripts/SceneLoader.cs using Guid(d4ce3529c31929f42bea98b7e58d93de) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fa2778f06e145973e954d47d3bd6a0cd') in 0.000898 seconds
|
||||
Import took 0.003346 seconds .
|
||||
|
||||
========================================================================
|
||||
Received Import Request.
|
||||
Time since last request: 1.190691 seconds.
|
||||
path: Assets/Scripts/Session.cs
|
||||
artifactKey: Guid(bb773d3a31f3ff84d9872e7cee1125bd) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
|
||||
Start importing Assets/Scripts/Session.cs using Guid(bb773d3a31f3ff84d9872e7cee1125bd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '93634a1eb2457697061152db0770f70d') in 0.000857 seconds
|
||||
Import took 0.020759 seconds .
|
||||
|
||||
========================================================================
|
||||
Received Import Request.
|
||||
Time since last request: 3.869133 seconds.
|
||||
path: Assets/Scripts/WarningTableClose.cs
|
||||
artifactKey: Guid(6ba3d84aaf2200a42ac1482808035afe) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
|
||||
Start importing Assets/Scripts/WarningTableClose.cs using Guid(6ba3d84aaf2200a42ac1482808035afe) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '88f623f18bf6dd17a9b295861dba4a14') in 0.001116 seconds
|
||||
Import took 0.003419 seconds .
|
||||
|
||||
AssetImportWorkerClient::OnTransportError - code=2 error=End of file
|
File diff suppressed because it is too large
Load Diff
|
@ -2,3 +2,5 @@ Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data', plugins
|
|||
Cmd: initializeCompiler
|
||||
|
||||
Cmd: shutdown
|
||||
|
||||
Quitting shader compiler process
|
||||
|
|
|
@ -2,3 +2,5 @@ Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data', plugins
|
|||
Cmd: initializeCompiler
|
||||
|
||||
Cmd: shutdown
|
||||
|
||||
Quitting shader compiler process
|
||||
|
|
|
@ -2,3 +2,5 @@ Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data', plugins
|
|||
Cmd: initializeCompiler
|
||||
|
||||
Cmd: shutdown
|
||||
|
||||
Quitting shader compiler process
|
||||
|
|
|
@ -2,3 +2,5 @@ Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data', plugins
|
|||
Cmd: initializeCompiler
|
||||
|
||||
Cmd: shutdown
|
||||
|
||||
Quitting shader compiler process
|
||||
|
|
|
@ -2,3 +2,5 @@ Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data', plugins
|
|||
Cmd: initializeCompiler
|
||||
|
||||
Cmd: shutdown
|
||||
|
||||
Quitting shader compiler process
|
||||
|
|
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue