您的位置:首页 > 财经 > 金融 > 哈尔滨今天重大新闻_17岁日本免费完整版观看_百度数字人内部运营心法曝光_游戏代理平台

哈尔滨今天重大新闻_17岁日本免费完整版观看_百度数字人内部运营心法曝光_游戏代理平台

2024/12/22 23:06:15 来源:https://blog.csdn.net/2401_82978699/article/details/144340878  浏览:    关键词:哈尔滨今天重大新闻_17岁日本免费完整版观看_百度数字人内部运营心法曝光_游戏代理平台
哈尔滨今天重大新闻_17岁日本免费完整版观看_百度数字人内部运营心法曝光_游戏代理平台

目录

人物代码示例:

子弹代码示例:

总结上面代码:

注意点:


人物代码示例:

using System.Collections;
using System.Collections.Generic;
using UnityEngine;public class PlayerTiao : MonoBehaviour
{public float moveSpeed = 10f;private float h;private SpriteRenderer sr;void Start(){sr = this.GetComponent<SpriteRenderer>();}void Update(){h = Input.GetAxis("Horizontal");this.transform.Translate(moveSpeed * Time.deltaTime * Vector3.right *  h);if(h < 0){sr.flipX = true;}else if(h > 0){sr.flipX = false;}if(Input.GetKeyDown(KeyCode.Space)){GameObject obj = Instantiate(Resources.Load<GameObject>("BulletObj"),this.transform.position + new Vector3(sr.flipX ? -0.3f : 0.3f,0.5f,0),Quaternion.identity);obj.GetComponent<Bullet>().ChangeDir(sr.flipX ? Vector3.left : Vector3.right);}}
}

子弹代码示例:

using System.Collections;
using System.Collections.Generic;
using UnityEngine;public class Bullet : MonoBehaviour
{public float moveSpeed = 5f;private Vector3 nowDir;void Start(){Destroy(this.gameObject, 3f);}public void ChangeDir(Vector3 dir){nowDir = dir;}void Update(){this.transform.Translate(moveSpeed * Time.deltaTime * nowDir);}
}

总结上面代码:

this.transform.Translate(moveSpeed * Time.deltaTime * nowDir);   transform是属性 获取Transform组件  Translate是Transfor组件方法函数  

预设体 是 GameObject 类型

注意点:

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com