Unity3D
GLL_
每种编程语言独具特色,抓住自身特点去使用
展开
-
Unity3D 点击鼠标飞机开火
飞机脚本 using System.Collections; using System.Collections.Generic; using UnityEngine; public class MyJet : MonoBehaviour { public GameObject myprefab; // Start is called before the first frame update void Start() { Application.tar..原创 2022-02-05 22:10:39 · 1926 阅读 · 0 评论 -
Unity3D 鼠标点击切换图片
Unity3D 鼠标点击切换图片 佩琪和乔治切换 创建ChangeFace脚本,挂在peiqi3上 using System; using System.Collections; using System.Collections.Generic; using UnityEngine; public class ChangeFace : MonoBehaviour { public Sprite sprite1; public Sprite sprite2; private int原创 2022-02-05 20:40:03 · 8095 阅读 · 0 评论 -
Unity3D 通过向量飞机移动 调头到对象 两物体间距离
Unity3D 通过向量飞机移动 调头到对象 两物体间距离 移动 using UnityEngine; using System.Collections; public class move : MonoBehaviour { public bool upward = true; // Use this for initialization void Start () { } // Update is called once per frame void Updat..原创 2022-02-04 19:54:49 · 1830 阅读 · 0 评论 -
Unity3D 切分组图
如何切取下面的各个图 将图片拖到Unity3D中,选择组图,再选择 multiple选项 然后再点击Sprite Editor按钮 然后再点击Slice里的Trim选项,自动选取各个对象轴心 切完之后的组图有几个对象 ...原创 2022-02-03 18:41:17 · 596 阅读 · 0 评论 -
Unity3D 脚本-获取游戏对象翻转
Unity3D 脚本-获取游戏对象翻转 using UnityEngine; using System.Collections; public class test : MonoBehaviour { // Use this for initialization void Start () { Debug.Log("这个是测试"); Application.targetFrameRate = 60; //SpriteRenderer renderer = this.game.原创 2022-02-03 18:32:10 · 604 阅读 · 0 评论