kbengine_ue4_plugins icon indicating copy to clipboard operation
kbengine_ue4_plugins copied to clipboard

This client-plugins-project is written for kbengine(a MMOG engine of server)

Results 3 kbengine_ue4_plugins issues
Sort by recently updated
recently updated
newest added

we can set server ip\port after app start, useful for mobile

``` bool KBEngineApp::initialize(KBEngineArgs* pArgs) { if (isInitialized()) return false; EntityDef::initialize(); // 允许持久化KBE(例如:协议,entitydef等) if (pArgs->persistentDataPath != TEXT("")) { KBE_SAFE_RELEASE(persistentInfos_); persistentInfos_ = new PersistentInfos(pArgs->persistentDataPath); } // 注册事件 installEvents(); pArgs_ = pArgs; reset();...