博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
排行榜的写法
阅读量:6583 次
发布时间:2019-06-24

本文共 1883 字,大约阅读时间需要 6 分钟。

 
using System;using System.Collections;using System.Collections.Generic;using UnityEngine;using UnityEngine.UI;public class BirdController : MonoBehaviour{    int score = 0;    public Text text;    int max = 0;    int[] nums = new int[5];    Button b;    // Use this for initialization    void Start()    {        text = text.GetComponent
(); for (int i = 0; i < nums.Length; i++) { nums[i] = PlayerPrefs.GetInt("max" + i); } } // Update is called once per frame void Update() { text.text = "得分: " + score + "\n最高分:" + max; transform.Rotate(Vector3.back * Time.deltaTime * 70); if (Input.GetMouseButtonDown(0)) { GetComponent
().velocity = Vector3.up * Time.deltaTime * 130; // transform.rotation=Quaternion.Euler(0,0,30); //GetComponent
().angularVelocity transform.eulerAngles = new Vector3(0, 0, 30); } } private void OnTriggerEnter(Collider other) { if (other.tag == "mid")//得分 { score += 1; Destroy(other.gameObject); } else { //排行榜的存入 Array.Sort(nums);//从小到大排序 for (int i = 0; i < nums.Length; i++) { if (nums[i] < score)//数组里的数字和分数比较,分数比其中任何一个大就赋值 { nums[0] = score;//此时最小的是数组里的第一个,把新的值赋值给他就跳出 break; } } Array.Sort(nums);//再一次排序 Array.Reverse(nums);//反转 for (int i = 0; i < nums.Length; i++)//按顺序输出 { PlayerPrefs.SetInt("max" + i, nums[i]); } Application.LoadLevel(2); Time.timeScale = 0; // Destroy(gameObject); } }}
 

 

 

 

转载于:https://www.cnblogs.com/satanj/p/9629088.html

你可能感兴趣的文章
MongoDB的副本集Replica Set
查看>>
Maven项目中的配置文件找不到以及打包问题
查看>>
面向对象
查看>>
HDU 1058 Humble Numbers
查看>>
NYOJ The Triangle
查看>>
wps10.1中将txt转为excel
查看>>
解决执行脚本报syntax error: unexpected end of file或syntax error near unexpected token `fi'错误的问题...
查看>>
[BZOJ3312][USACO]不找零(状压DP)
查看>>
gtp转换mbr
查看>>
django rest framework
查看>>
poj1985 求树的直径
查看>>
Python PyPI中国镜像
查看>>
centos 设置静态IP
查看>>
[Angularjs]系列——学习与实践
查看>>
js -- canvas img 封装
查看>>
转 我们工作的动力是什么 工作最终是为了什么?
查看>>
测试一个网站的最大并发量并发数并发用户
查看>>
适配器模式(数据库方面)支持不同的数据库连接
查看>>
CF456B Fedya and Maths 找规律
查看>>
nodejs安装及windows环境配置
查看>>