...
발췌 | ||
---|---|---|
| ||
This process sets and initializes the app information used by the SDK. It must be called before any other API when the game starts. |
Unity - https://kakaogames.atlassian.net/wiki/spaces/KS4GFC/pages/788926851/EN_Unity+SDK+API#SDK-%EC%B4%88%EA%B8%B0%ED%99%94Initialization
Windows -
...
발췌 | ||
---|---|---|
| ||
When a game is started, it must call the Start function to notify the Kakao Game SDK that it has been started. UI functions such as platform announcements, update news, and term agreements are performed when the Start function of the Kakao Game SDK is called. If there exists a prior user login record, the automatic login function is also performed, and the result is sent through the callback function inputted in the game when the method is called. Therefore, the game can use the results to decide whether to authenticate the user first or whether to resume a previous game. |
Unity - https://kakaogames.atlassian.net/wiki/spaces/KS4GFPKS4GFC/pages/546963457788926851/EN_Unity+SDK+API#%EC%8A%A4%ED%83%80%ED%8A%B8-(Start)-%ED%95%98%EA%B8%B0API#Start
Unreal - https://kakaogames.atlassian.net/wiki/spaces/KS4GFC/pages/794066945/EN_Unreal+SDK+API#Start
...
발췌 | ||
---|---|---|
| ||
If the game is moved to the background, the game must call the Pause API to notify the Kakao Game SDK that it has become inactive. When the Pause API is called, the Kakao Game SDK disconnects the connected session and stops periodically sending heartbeats to prevent battery consumption. |
Unity - https://kakaogames.atlassian.net/wiki/spaces/KS4GFC/pages/788926851/EN_Unity+SDK+API#Pause-%ED%95%98%EA%B8%B0
...
발췌 | ||
---|---|---|
| ||
If the game is moved back to the foreground from the background, it must call the Resume API to notify the Kakao Game SDK that it has become active. The Kakao Game SDK checks whether the authentication has expired when the Resume method is called and restores the session depending on the check. The result is then sent through the callback function inputted in the game when the method is called. The game can use the results to decide whether to authenticate the user again or whether to resume a previous game. |
Unity - https://kakaogames.atlassian.net/wiki/spaces/KS4GFC/pages/788926851/EN_Unity+SDK+API#Resume-%ED%95%98%EA%B8%B0
...
발췌 | ||
---|---|---|
| ||
This feature is supported in the Windows environment. If you do not use the default login UI provided by the SDK and instead implement your own login UI, the SDK offers a feature to set up auto login.
|
Unity - https://kakaogames.atlassian.net/wiki/spaces/KS4GFC/pages/788926851/EN_Unity+SDK+API#%EC%9C%88%EB%8F%84%EC%9A%B0%EC%A6%88-%ED%99%98%EA%B2%BD%EC%97%90%EC%84%9C-%EC%9E%90%EB%8F%99%EB%A1%9C%EA%B7%B8%EC%9D%B8-%EC%84%A4%EC%A0%95%ED%95%98%EA%B8%B0API#Setting-Up-Auto-Login-in-a-Windows-Environment
Windows -
...