mirror of
https://github.com/whoahq/whoa.git
synced 2026-03-18 05:31:07 +03:00
Compare commits
3 Commits
dff7c0774f
...
0157c04b13
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0157c04b13 | ||
|
|
06186d1251 | ||
|
|
e391f966bb |
@ -204,7 +204,14 @@ int32_t Script_ShowTerminationWithoutNoticeNotice(lua_State* L) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
int32_t Script_TerminationWithoutNoticeAccepted(lua_State* L) {
|
int32_t Script_TerminationWithoutNoticeAccepted(lua_State* L) {
|
||||||
WHOA_UNIMPLEMENTED(0);
|
if (CGlueMgr::m_acceptedTerminationWithoutNotice) {
|
||||||
|
lua_pushnumber(L, 1.0);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
lua_pushnil(L);
|
||||||
|
}
|
||||||
|
|
||||||
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
int32_t Script_AcceptTerminationWithoutNotice(lua_State* L) {
|
int32_t Script_AcceptTerminationWithoutNotice(lua_State* L) {
|
||||||
|
|||||||
@ -91,4 +91,8 @@ void CGWorldFrame::OnWorldRender() {
|
|||||||
|
|
||||||
void CGWorldFrame::OnWorldUpdate() {
|
void CGWorldFrame::OnWorldUpdate() {
|
||||||
// TODO
|
// TODO
|
||||||
|
|
||||||
|
this->m_camera->SetupWorldProjection(this->m_screenRect);
|
||||||
|
|
||||||
|
// TODO
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user