📅  最后修改于: 2022-03-11 14:49:22.949000             🧑  作者: Mango
void OnDrawGizmos()
{
// Draw a yellow sphere at the transform's position
Gizmos.color = Color.yellow;
Gizmos.DrawSphere(transform.position, 1);
}