加载中...

摘要: 同版本编辑器在不同VS版本下会报错问题解决 解决方法 报错情况 解决方法 打开Edit >Preferences >External Tools然后点击:Regenerate project files 阅读全文
posted @ 2022-04-13 23:32 lxp_blog 阅读(158) 评论(0) 推荐(0) 编辑
摘要: 获取对象 public CharacterController cc; cc=gameObject.GetComponent<CharacterController>(); if(Input.GetKey(KeyCode.RightArrow)) cc.Move(Vector3.right*Time 阅读全文
posted @ 2022-04-13 23:28 lxp_blog 阅读(101) 评论(0) 推荐(0) 编辑
摘要: 射线 Ray ray= Camera.main.ScreenPointToRay(Input.mousePosition);//获得鼠标射向的射线 RaycastHit hit;//射线碰撞物体 if(Physics.Raycast(ray,out hit)){ Debug.DrawLine(ray 阅读全文
posted @ 2022-04-13 18:07 lxp_blog 阅读(101) 评论(0) 推荐(0) 编辑