From 6273f8b49ed638db89aa81e200daa0fc1798b8cd Mon Sep 17 00:00:00 2001 From: knox Date: Thu, 13 Jul 2023 10:18:11 +0800 Subject: [PATCH] refine code --- cocos/physics/framework/components/rigid-body.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cocos/physics/framework/components/rigid-body.ts b/cocos/physics/framework/components/rigid-body.ts index 6205d1acfb6..a2ae7329607 100644 --- a/cocos/physics/framework/components/rigid-body.ts +++ b/cocos/physics/framework/components/rigid-body.ts @@ -38,8 +38,8 @@ import { serializable, override, } from 'cc.decorator'; -import { DEBUG, EDITOR } from 'internal:constants'; -import { Vec3, error, warn, CCClass } from '../../../core'; +import { DEBUG } from 'internal:constants'; +import { Vec3, error, warn } from '../../../core'; import { Component } from '../../../scene-graph'; import { IRigidBody } from '../../spec/i-rigid-body'; import { selector, createRigidBody } from '../physics-selector';