From 9e0e21f4df61ff28da08a5d82106ec7aed58fea8 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 14 Oct 2024 16:37:16 +0000 Subject: [PATCH] Update pages --- ScriptReference/api/Interfaces/JCS_Instance.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ScriptReference/api/Interfaces/JCS_Instance.html b/ScriptReference/api/Interfaces/JCS_Instance.html index 77bca154..24f6ba42 100644 --- a/ScriptReference/api/Interfaces/JCS_Instance.html +++ b/ScriptReference/api/Interfaces/JCS_Instance.html @@ -1,16 +1,16 @@ -

JCS_Instance

Singleton instance interface.

This file contain three classes.

1) JCS_Instance

See Example.cs:

  public class Example : JCS_Instance<Example>
+

JCS_Instance

Singleton instance interface.

This file contain three classes.

🏛️ JCS_Instance

See Example.cs:

  public class Example : JCS_Instance<Example>
   {
       private void Awake ()
       {
           instance = this;
       }
-  }

2) JCS_InstanceOld

Singleton instance interface to keep the old instance.

See ExampleOld.cs:

  public class ExampleOld : JCS_InstanceOld<Example>
+  }

🏛️ JCS_InstanceOld

Singleton instance interface to keep the old instance.

See ExampleOld.cs:

  public class ExampleOld : JCS_InstanceOld<Example>
   {
       private void Awake ()
       {
           CheckInstance(this);
       }
-  }

3) JCS_InstanceNew

Check singleton for keep the old one.

See ExampleNew.cs:

  public class ExampleNew : JCS_InstanceNew<Example>
+  }

🏛️ JCS_InstanceNew

Check singleton for keep the old one.

See ExampleNew.cs:

  public class ExampleNew : JCS_InstanceNew<Example>
   {
       private void Awake ()
       {