From 10658af0225f931f8a23284328893284fadcf8fc Mon Sep 17 00:00:00 2001 From: Hamster5295 Date: Tue, 9 Jan 2024 12:51:53 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=97=A0=E6=B3=95=E9=87=8D?= =?UTF-8?q?=E5=86=99=20Process=20=E5=92=8C=20PhysicsProcess=20=E7=9A=84=20?= =?UTF-8?q?bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Runtime/Processer/Processable.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Runtime/Processer/Processable.cs b/Runtime/Processer/Processable.cs index 16b8f7d..3e15ae7 100644 --- a/Runtime/Processer/Processable.cs +++ b/Runtime/Processer/Processable.cs @@ -5,7 +5,7 @@ namespace Bingyan /// 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) { } } } \ No newline at end of file