Skip to content

Commit b88115d

Browse files
committed
Scene is not progress manually.
1 parent 109c1d6 commit b88115d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,4 +86,4 @@ ENDIF ()
8686
## -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
8787

8888
ADD_SUBDIRECTORY(${CMAKE_CURRENT_SOURCE_DIR}/Foundation)
89-
ADD_SUBDIRECTORY(${CMAKE_CURRENT_SOURCE_DIR}/Example)
89+
#ADD_SUBDIRECTORY(${CMAKE_CURRENT_SOURCE_DIR}/Example)

Foundation/Public/Aurora.Scene/Service.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ namespace Scene
3737
// -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
3838
// -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
3939

40-
void Service::OnTick(ConstRef<Time> Time)
40+
void Service::Progress(ConstRef<Time> Time)
4141
{
4242
mWorld.progress(Time.GetDelta());
4343
}

Foundation/Public/Aurora.Scene/Service.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ namespace Scene
2525
{
2626
// -=(Undocumented)=-
2727
// @TODO: 128Bit UUID instead of names.
28-
class Service final : public AbstractSubsystem<Service>, public Tickable
28+
class Service final : public AbstractSubsystem<Service>
2929
{
3030
public:
3131

3232
// -=(Undocumented)=-
3333
explicit Service(Ref<Context> Context);
3434

35-
// \see Tickable::OnTick
36-
void OnTick(ConstRef<Time> Time) override;
35+
// -=(Undocumented)=-
36+
void Progress(ConstRef<Time> Time);
3737

3838
// -=(Undocumented)=-
3939
template<typename Type>

0 commit comments

Comments
 (0)