File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -27,13 +27,13 @@ public class KBEMain : MonoBehaviour
27
27
public bool useAliasEntityID = true ;
28
28
public bool isOnInitCallPropertysSetMethods = true ;
29
29
30
- void Awake ( )
30
+ protected virtual void Awake ( )
31
31
{
32
32
DontDestroyOnLoad ( transform . gameObject ) ;
33
33
}
34
34
35
35
// Use this for initialization
36
- void Start ( )
36
+ protected virtual void Start ( )
37
37
{
38
38
MonoBehaviour . print ( "clientapp::start()" ) ;
39
39
installEvents ( ) ;
@@ -78,7 +78,7 @@ public virtual void initKBEngine()
78
78
gameapp = new KBEngineApp ( args ) ;
79
79
}
80
80
81
- void OnDestroy ( )
81
+ protected virtual void OnDestroy ( )
82
82
{
83
83
MonoBehaviour . print ( "clientapp::OnDestroy(): begin" ) ;
84
84
if ( KBEngineApp . app != null )
@@ -89,7 +89,7 @@ void OnDestroy()
89
89
MonoBehaviour . print ( "clientapp::OnDestroy(): end" ) ;
90
90
}
91
91
92
- void FixedUpdate ( )
92
+ protected virtual void FixedUpdate ( )
93
93
{
94
94
KBEUpdate ( ) ;
95
95
}
You can’t perform that action at this time.
0 commit comments