Skip to content

Commit

Permalink
修复无法重写 Process 和 PhysicsProcess 的 bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Hamster5295 committed Jan 9, 2024
1 parent bca600f commit 10658af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Runtime/Processer/Processable.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace Bingyan
/// </summary>
public class Processable : IProcessable
{
public void PhysicsProcess(float delta) { }
public void Process(float delta) { }
public virtual void PhysicsProcess(float delta) { }
public virtual void Process(float delta) { }
}
}

0 comments on commit 10658af

Please sign in to comment.