Skip to content

Commit

Permalink
[修改]1. 修改实现类的查询函数
Browse files Browse the repository at this point in the history
  • Loading branch information
AlianBlank committed Sep 21, 2024
1 parent 7800f62 commit bbf0d53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Runtime/Timer/TimerComponent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class TimerComponent : GameFrameworkComponent

protected override void Awake()
{
ImplementationComponentType = Type.GetType(componentType);
ImplementationComponentType = Utility.Assembly.GetType(componentType);
InterfaceComponentType = typeof(ITimerManager);
base.Awake();
_timerManager = GameFrameworkEntry.GetModule<ITimerManager>();
Expand Down

0 comments on commit bbf0d53

Please sign in to comment.