Skip to content

Commit d891b5a

Browse files
committed
Version update 1.4.5
1 parent df8fdb4 commit d891b5a

File tree

187 files changed

+10332
-2309
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

187 files changed

+10332
-2309
lines changed

Assets/BossFight_Assets/Scripts/BF_CharacterSpawnHandler.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,15 +77,15 @@ private void SpawnPlayers()
7777
{
7878
if (mSpawnPos[index] == null)
7979
{
80-
JCS_Debug.JcsReminders(
80+
JCS_Debug.LogReminders(
8181
this,
8282
"No Spawn position references, plz check the transform in the array...");
8383
break;
8484
}
8585

8686
if (bfPlayers[index] == null)
8787
{
88-
JCS_Debug.JcsErrors(
88+
JCS_Debug.LogError(
8989
this,
9090
"Character you want to spawn does not exist...");
9191
break;

Assets/BossFight_Assets/Scripts/BF_WaveHandler.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ public void SpawnAWave(int spawnIndex)
100100
// if the enemy we assign is null, will cause errors.
101101
if (this.mLevelEnemy[spawnIndex] == null)
102102
{
103-
JCS_Debug.JcsReminders(this,
103+
JCS_Debug.LogReminders(this,
104104
"Make sure all the enemy in handler are assigned.");
105105

106106
return;
@@ -162,7 +162,7 @@ private void SpawnAWaveByLevel()
162162
// check the length of the enemy array prevent errors.
163163
if (mLevelEnemy.Length == 0)
164164
{
165-
JCS_Debug.JcsReminders(this,
165+
JCS_Debug.LogReminders(this,
166166
"Could not spawn the enemy without enemy object assign...");
167167

168168
return;

Assets/BossFight_Assets/Scripts/Managers/BF_GameManager.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,13 +134,13 @@ public void EndGame()
134134
mHealthTarget.LiveObject.CanDamage = false;
135135
else
136136
{
137-
JCS_Debug.JcsReminders(this,
137+
JCS_Debug.LogReminders(this,
138138
"No health object in the assign...");
139139
}
140140

141141
if (GAME_OVER_PANEL == null)
142142
{
143-
JCS_Debug.JcsErrors(
143+
JCS_Debug.LogError(
144144
this, "No game over panel have been set.");
145145

146146
return;

Assets/BossFight_Assets/Scripts/Settings/BF_GameSettings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ private void SaveGameData()
165165
{
166166
if (BF_GAME_DATA == null)
167167
{
168-
JCS_Debug.JcsErrors(
168+
JCS_Debug.LogError(
169169
this,
170170
"Save Data without data??? (Fatal Error)");
171171

Assets/JCSUnity/Editors/JCSUnity_EditorWindow.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ private static GameObject CreateBaseGUIPanel()
304304
JCS_Canvas jcsCanvas = (JCS_Canvas)FindObjectOfType(typeof(JCS_Canvas));
305305
if (jcsCanvas == null)
306306
{
307-
JCS_Debug.JcsLog(
307+
JCS_Debug.Log(
308308
"JCSUnity_EditorWindow",
309309
"Cannot find the JCS_Canvas in the hierarchy. Plz create the canvas before create the base panel.");
310310

@@ -330,7 +330,7 @@ private static void CreateSlidePanel()
330330
JCS_Canvas jcsCanvas = (JCS_Canvas)FindObjectOfType(typeof(JCS_Canvas));
331331
if (jcsCanvas == null)
332332
{
333-
JCS_Debug.JcsLog(
333+
JCS_Debug.Log(
334334
"JCSUnity_EditorWindow",
335335
"Cannot find the JCS_Canvas in the hierarchy. Plz create the canvas before create the 9 x 9 slide panel.");
336336

@@ -341,7 +341,7 @@ private static void CreateSlidePanel()
341341
JCS_2DCamera cam = (JCS_2DCamera)FindObjectOfType(typeof(JCS_Camera));
342342
if (cam == null)
343343
{
344-
JCS_Debug.JcsLog(
344+
JCS_Debug.Log(
345345
"JCSUnity_EditorWindow",
346346
"Cannot find the JCS_Camera in the hierarchy. Plz create the canvas before create the 9 x 9 slide panel.");
347347

@@ -503,7 +503,7 @@ private static GameObject CreateHierarchyObjectUnderCanvas(string settingPath, J
503503
{
504504
if (jcsCanvas == null)
505505
{
506-
JCS_Debug.JcsLog(
506+
JCS_Debug.Log(
507507
"JCSUnity_EditorWindow",
508508
"Cannot find the JCS_Canvas in the hierarchy. Plz create the canvas before create the base panel.");
509509

Assets/JCSUnity/Editors/ini/editor.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# JCSUnity editor properties.
33
#
44
editor_title=JCSUnity
5-
version=1.4.3
5+
version=1.4.5
66
email=jayces090218@gmail.com
77
author=Jen-Chieh Shen
88
url=https://github.com/jcs090218/JCSUnity_Framework

0 commit comments

Comments
 (0)