当前位置: 首页 > news >正文

Roll-A-Ball 游戏

Roll-A-Ball 游戏

在这里插入图片描述

1)学习资料

  • b站视频教程:https://www.bilibili.com/video/BV18W411671S/
  • 文档:
    * Roll-A-Ball 教程(一),
    * Roll-A-Ball 教程(二)
  • 线上体验roll-a-ball成品
    * http://www-personal.umich.edu/~ayarger/ShadowsInPlatformersWeb/

2)核心代码:

功能1:用W A S D控制小球移动的脚本:

新建一个C#脚本叫做sphereControll,添加到 小球身上。

using System.Collections;
using System.Collections.Generic;
using UnityEngine;public class sphereControll : MonoBehaviour
{// Update is called once per framevoid Update(){if (Input.GetKey(KeyCode.W)){GetComponent<Rigidbody>().AddForce(new Vector3(0, 0, 10));}if (Input.GetKey(KeyCode.S)){GetComponent<Rigidbody>().AddForce(new Vector3(0, 0, -10));}if (Input.GetKey(KeyCode.A)){GetComponent<Rigidbody>().AddForce(new Vector3(-10, 0, 0));}if (Input.GetKey(KeyCode.D)){GetComponent<Rigidbody>().AddForce(new Vector3(10, 0, 0));}if (Input.GetKey(KeyCode.Space)){GetComponent<Rigidbody>().AddForce(new Vector3(0, 10, 0));}}
}

或者:用Input.getAxis控制小球移动的脚本:

using System.Collections;
using System.Collections.Generic;
using UnityEngine;public class sphereControll : MonoBehaviour
{float horizontal;float vertical;public float speed=10;// Update is called once per framevoid Update(){horizontal=Input.GetAxis("Horizontal");vertical=Input.GetAxis("Vertical");GetComponent<Rigidbody>().AddForce(new Vector3(horizontal,0,vertical)*speed);}
}

功能2:摄像机跟随脚本,

新建一个C#脚本叫做CameraController.cs,添加到 摄像机身上。

using System.Collections;
using System.Collections.Generic;
using UnityEngine;public class CameraController : MonoBehaviour
{public GameObject player;Vector3 offset;void Start(){offset = transform.position - player.transform.position;}void Update(){transform.position = player.transform.position + offset;}
}

功能3:物块自动旋转

新建脚本,Rotator.cs,挂到要旋转的物体上。

using System.Collections;
using System.Collections.Generic;
using UnityEngine;public class Rotator : MonoBehaviour
{void Update(){transform.Rotate(new Vector3(15,30,45)*Time.deltaTime);}
}

功能4:碰到即消失。

在小球的脚本中,添加以下代码,若碰到了tag是pickup的物体,则销毁该物体

void OnTriggerEnter(Collider other){if (other.gameObject.tag == "pickup"){Destroy(other.gameObject);}        }
http://www.lryc.cn/news/247625.html

相关文章:

  • 医疗影像数据集—CT、X光、骨折、阿尔茨海默病MRI、肺部、肿瘤疾病等图像数据集
  • Linux僵死进程及文件操作
  • 用Python写一个浏览器集群框架
  • 【Github】git安装
  • sql语法大全
  • 小红书API接口测试 | 小红书笔记详情 API 接口测试指南
  • 实验六:Java流式编程与网络程序设计
  • 金字塔原理
  • VR全景技术助力政务服务大厅数字化,打造全新政务服务体验
  • 使用Python实现SVM来解决二分类问题
  • 合并PDF出现OOM异常
  • c语言-数据结构-链式二叉树
  • DelayQueue介绍
  • centos8 redis 6.2.6源码安装+主从哨兵
  • 机器学习之危险品车辆目标检测
  • DHCP协议及实验omnipeek抓包工具分析 IPv4协议
  • 考过了PMP,面试的时候应该怎么办?
  • 技巧-PyTorch中num_works的作用和实验测试
  • Android:FragmentTransaction
  • 5.golang字符串的拆解和拼接
  • 配置 Mantis 在 Windows 上的步骤
  • Android 单元测试初体验(二)-断言
  • 通过ros系统中websocket中发送sensor_msgs::Image数据给web端显示
  • 【 Kubernetes 风云录 】- Istio 应用多版本流量控制
  • 比尔盖茨:GPT-5不会比GPT-4好多少,生成式AI已达到极限
  • let const 与var的区别
  • git 把项目托管到码云
  • sCrypt 现已支持各类主流前端框架
  • leetcode:2549. 统计桌面上的不同数字(python3解法)
  • 数据结构 / day03作业