【UnityRPG游戏制作】RPG项目的背包系统商城系统和BOSS大界面

2024-04-28 01:20

本文主要是介绍【UnityRPG游戏制作】RPG项目的背包系统商城系统和BOSS大界面,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

在这里插入图片描述


👨‍💻个人主页:@元宇宙-秩沅

👨‍💻 hallo 欢迎 点赞👍 收藏⭐ 留言📝 加关注✅!

👨‍💻 本文由 秩沅 原创

👨‍💻 收录于专栏:Unity基础实战

🅰️



文章目录

    • 🅰️
    • 前言
    • (==1==)商城系统
    • (==2==)背包系统
    • (==3==)BOSS系统


前言


1商城系统


请添加图片描述

  • 商品逻辑
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
using static UnityEditor.Progress;//------------------------------
//-------功能:   商城物品按钮
//-------创建者:         
//------------------------------public class ShopItem : MonoBehaviour
{public Button item;    //商品按钮public Text   price;public int    priceVaule; //商品价格public GridLayoutGroup backPack; //购买栏public int allDamon; private Vector3 off =  new Vector3(1.8f,1,1); //设定物品框的大小Button btu;private void Start(){item = GetComponent<Button>();//将价格进行转换priceVaule = Convert.ToInt32(price.text);item.onClick.AddListener(()=> //按钮点击事件的添加{Debug.Log("现在的水晶为:"+PlayerContorller.GetInstance().damonNum);Debug.Log("当前的价格为:"+ priceVaule);//如果钱够了if ( priceVaule <= PlayerContorller.GetInstance().damonNum) {btu = Instantiate(item); //实例化按钮//减少钻石的数量                  Destroy(btu.GetComponent<ShopItem>());   //移除该商品的脚本PlayerContorller.GetInstance().ReduceDamon(priceVaule, Instantiate(btu));btu.transform.SetParent(backPack.transform); //移动到购买栏下方btu.transform.localScale = off;//初始化大小}else{GameFacade.Instance.SendNotification(PureNotification.SHOW_PANEL,"TipPanel");}});}private void Update(){if (backPack != null){ }}
}
  • 面板逻辑
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;//-------------------------------
//-------功能: 商城系统
//-------创建者:         -------
//------------------------------public class StoreView : BasePanel
{public GridLayoutGroup StoreGrid;public GridLayoutGroup BackGrid;public Button backBtu;public Button bugPack;//放入背包}
  • 面板视图中介(PureMVC)
using PureMVC.Interfaces;
using PureMVC.Patterns.Mediator;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;//-------------------------------
//-------功能:          -------
//-------创建者:         -------
//------------------------------public class StoreViewMediator : Mediator
{//铭牌名public static string NAME = "StoreViewMediator";/// <summary>/// 构造函数/// </summary>public StoreViewMediator() : base(NAME){}/// <summary>/// 重写监听感兴趣的通知的方法/// </summary>/// <returns>返回你需要监听的通知的名字数组</returns>public override string[] ListNotificationInterests(){return new string[] {};}/// <summary>/// 面板中组件设置(监听相关)/// </summary>/// <param name="stateView"></param>public void setView(StoreView storeView){ViewComponent = storeView;if(ViewComponent == null) { Debug.Log("面板是空的"); }storeView.backBtu .onClick.AddListener(()=>{SendNotification(PureNotification.HIDE_PANEL, "StorePanel");});storeView.bugPack.onClick.AddListener(() =>{});}/// <summary>/// 玩家受伤逻辑/// </summary>public void Hurt(){}/// <summary>/// 重写处理通知的方法,处理通知,前提是完成通知的监听/// </summary>/// <param name="notification">通知</param>public override void HandleNotification(INotification notification){switch (notification.Name){}}
}

2背包系统


请添加图片描述

  • 背包系统视图
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;//-------------------------------
//-------功能: 背包系统视图
//-------创建者:         
//------------------------------public class BackpackView : BasePanel
{public Button back; //退出按钮public GridLayoutGroup grid; /// <summary>/// 更新背包中的内容/// </summary>/// <param name="itemBtu"></param>public void AddItem(Button itemBtu){//将传入的按钮设置为布局下面的子物体itemBtu.transform.SetParent (grid.gameObject.transform );itemBtu.transform.localScale = Vector3.one ;//初始化商品道具大小}}+ 背包系统视图中介```csharp
using PureMVC.Interfaces;
using PureMVC.Patterns.Mediator;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;//-------------------------------
//-------功能:  背包面板视图中介
//-------创建者:      
//------------------------------/// <summary>
/// 状态面板视图中介
/// 固定:
/// 1.继承PureMVC的Mediator脚本
/// 2.写构造函数
/// 3.重写监听通知的方法
/// 4.重写处理通知的方法
/// 5.可选:重写注册时的方法
/// </summary>
public class BackpackViewMediator : Mediator
{//铭牌名public static string NAME = "BackpackViewMediator";/// <summary>/// 构造函数/// </summary>public BackpackViewMediator() : base(NAME){}/// <summary>/// 重写监听通知的方法,返回需要的监听(通知)/// </summary>/// <returns>返回你需要监听的通知的名字数组</returns>public override string[] ListNotificationInterests(){return new string[] {PureNotification.UPDATA_BACKPACK//PureNotification.UPDATA_STATE_INFO};}public void SetView(BackpackView backpackView){Debug.Log(backpackView + "执行SetView");ViewComponent = backpackView;//开始按钮逻辑监听backpackView.back.onClick.AddListener(() =>{SendNotification(PureNotification.HIDE_PANEL, "BackpackPanel");});}/// <summary>/// 重写处理通知的方法,处理通知/// </summary>/// <param name="notification">通知</param>public override void HandleNotification(INotification notification){switch (notification.Name){case PureNotification.UPDATA_BACKPACK:Debug.Log("/执行视图中的放入背包的方法");//执行视图中的放入背包的方法(ViewComponent as BackpackView).AddItem(notification.Body as Button);break;}}
}
  • 购买后的商品逻辑
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
using static UnityEditor.Progress;//------------------------------
//-------功能:   商城物品按钮
//-------创建者:         
//------------------------------public class ShopItem : MonoBehaviour
{public Button item;    //商品按钮public Text   price;public int    priceVaule; //商品价格public GridLayoutGroup backPack; //购买栏public int allDamon; private Vector3 off =  new Vector3(1.8f,1,1); //设定物品框的大小Button btu;private void Start(){item = GetComponent<Button>();//将价格进行转换priceVaule = Convert.ToInt32(price.text);item.onClick.AddListener(()=> //按钮点击事件的添加{Debug.Log("现在的水晶为:"+PlayerContorller.GetInstance().damonNum);Debug.Log("当前的价格为:"+ priceVaule);//如果钱够了if ( priceVaule <= PlayerContorller.GetInstance().damonNum) {btu = Instantiate(item); //实例化按钮//减少钻石的数量                  Destroy(btu.GetComponent<ShopItem>());   //移除该商品的脚本PlayerContorller.GetInstance().ReduceDamon(priceVaule, Instantiate(btu));btu.transform.SetParent(backPack.transform); //移动到购买栏下方btu.transform.localScale = off;//初始化大小}else{GameFacade.Instance.SendNotification(PureNotification.SHOW_PANEL,"TipPanel");}});}private void Update(){if (backPack != null){ }}
}

3BOSS系统


请添加图片描述

请添加图片描述

  • 场景加载
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;//-------------------------------
//-------功能: Boss房间钥匙逻辑
//-------创建者:         -------
//------------------------------public class Key : MonoBehaviour
{private void OnTriggerStay(Collider other){if (other.gameObject .tag == "Player"&& Input.GetKeyDown(KeyCode.F)){SceneManager.LoadScene(1);}}
}
  • boss攻击
using DG.Tweening;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SocialPlatforms;
using UnityEngine.UI;//-------------------------------
//-------功能: boss控制器
//-------创建者:         -------
//------------------------------public class BossController : MonoBehaviour
{public GameObject player;   //对标玩家public Animator animator;   //对标动画机public float hp = 300f;     //血量public Image hpSlider;      //血条private int attack = 30;    //敌人的攻击力public float CD_skill;      //技能冷却时间private void Start(){    animator = GetComponent<Animator>();hpSlider = transform.GetChild(0).GetChild(0).GetComponent<Image>();}private void Update(){CD_skill += Time.deltaTime; //CD一直在累加}//碰撞检测private void OnCollisionStay(Collision collision){if (collision.gameObject.tag == "Player") //检测到如果是玩家的标签{Debug.Log("接触到玩家");if (CD_skill > 3.5f)  //攻击动画的冷却时间{//触发攻击事件animator.SetBool("attack", true); //攻击动画激活 EventCenter.GetInstance().EventTrigger(PureNotification.PLAYER_INJURY); //激活玩家受伤事件                    //延迟播放动画sGameFacade.Instance.SendNotification(PureNotification.HURT_UP, attack);  //发送玩家受伤扣血的通知StartCoroutine("delay", collision.gameObject.transform );CD_skill = 0; //冷却时间归0    }}}IEnumerator delay(Transform  transform)  //协程迭代器的定义{//暂停几秒(协程挂起)yield return new WaitForSeconds(0.5f);//暂停两秒后再显示文字   //DOtweentransform.DOMoveZ(transform.localPosition.z - 3, 1); //被撞击Z轴后移}//退出 碰撞检测private void OnCollisionExit(Collision collision){//if (collision.gameObject.tag == "Player") //检测到如果是玩家的标签{Debug.Log("玩家退出");animator.SetBool("attack", false);PlayerContorller.GetInstance().animator.SetBool("hurt", false);}}//范围触发检测private void OnTriggerStay(Collider other){if (other.tag == "Player")  //检测到如果是玩家的标签{//让怪物看向玩家transform.LookAt(other.gameObject.transform.position);animator.SetBool("walk", true);//并且向其移动transform.Translate(Vector3.forward * 1 * Time.deltaTime);}}}
⭐<font color=red >🅰️</font>⭐
----⭐[【Unityc#专题篇】之c#进阶篇】](http://t.csdn.cn/wCAYg)⭐[【Unityc#专题篇】之c#核心篇】](http://t.csdn.cn/wCAYg)⭐[【Unityc#专题篇】之c#基础篇】](http://t.csdn.cn/4NW3P)⭐[【Unity-c#专题篇】之c#入门篇】](http://t.csdn.cn/5sJaB)**⭐**[【Unityc#专题篇】—进阶章题单实践练习](http://t.csdn.cn/ue4Oh)⭐[【Unityc#专题篇】—基础章题单实践练习](http://t.csdn.cn/czWon)**⭐**[【Unityc#专题篇】—核心章题单实践练习](http://t.csdn.cn/wCAYg)---<font color= red face="仿宋" size=3>**你们的点赞👍 收藏⭐ 留言📝 关注✅是我持续创作,输出优质内容的最大动力!**、---
![在这里插入图片描述](https://img-blog.csdnimg.cn/430fd5b6362d48c281827ddc6a56789d.gif)---

这篇关于【UnityRPG游戏制作】RPG项目的背包系统商城系统和BOSS大界面的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/942000

相关文章

不懂推荐算法也能设计推荐系统

本文以商业化应用推荐为例,告诉我们不懂推荐算法的产品,也能从产品侧出发, 设计出一款不错的推荐系统。 相信很多新手产品,看到算法二字,多是懵圈的。 什么排序算法、最短路径等都是相对传统的算法(注:传统是指科班出身的产品都会接触过)。但对于推荐算法,多数产品对着网上搜到的资源,都会无从下手。特别当某些推荐算法 和 “AI”扯上关系后,更是加大了理解的难度。 但,不了解推荐算法,就无法做推荐系

这15个Vue指令,让你的项目开发爽到爆

1. V-Hotkey 仓库地址: github.com/Dafrok/v-ho… Demo: 戳这里 https://dafrok.github.io/v-hotkey 安装: npm install --save v-hotkey 这个指令可以给组件绑定一个或多个快捷键。你想要通过按下 Escape 键后隐藏某个组件,按住 Control 和回车键再显示它吗?小菜一碟: <template

基于人工智能的图像分类系统

目录 引言项目背景环境准备 硬件要求软件安装与配置系统设计 系统架构关键技术代码示例 数据预处理模型训练模型预测应用场景结论 1. 引言 图像分类是计算机视觉中的一个重要任务,目标是自动识别图像中的对象类别。通过卷积神经网络(CNN)等深度学习技术,我们可以构建高效的图像分类系统,广泛应用于自动驾驶、医疗影像诊断、监控分析等领域。本文将介绍如何构建一个基于人工智能的图像分类系统,包括环境

水位雨量在线监测系统概述及应用介绍

在当今社会,随着科技的飞速发展,各种智能监测系统已成为保障公共安全、促进资源管理和环境保护的重要工具。其中,水位雨量在线监测系统作为自然灾害预警、水资源管理及水利工程运行的关键技术,其重要性不言而喻。 一、水位雨量在线监测系统的基本原理 水位雨量在线监测系统主要由数据采集单元、数据传输网络、数据处理中心及用户终端四大部分构成,形成了一个完整的闭环系统。 数据采集单元:这是系统的“眼睛”,

如何用Docker运行Django项目

本章教程,介绍如何用Docker创建一个Django,并运行能够访问。 一、拉取镜像 这里我们使用python3.11版本的docker镜像 docker pull python:3.11 二、运行容器 这里我们将容器内部的8080端口,映射到宿主机的80端口上。 docker run -itd --name python311 -p

poj2576(二维背包)

题意:n个人分成两组,两组人数只差小于1 , 并且体重只差最小 对于人数要求恰好装满,对于体重要求尽量多,一开始没做出来,看了下解题,按照自己的感觉写,然后a了 状态转移方程:dp[i][j] = max(dp[i][j],dp[i-1][j-c[k]]+c[k]);其中i表示人数,j表示背包容量,k表示输入的体重的 代码如下: #include<iostream>#include<

hdu2159(二维背包)

这是我的第一道二维背包题,没想到自己一下子就A了,但是代码写的比较乱,下面的代码是我有重新修改的 状态转移:dp[i][j] = max(dp[i][j], dp[i-1][j-c[z]]+v[z]); 其中dp[i][j]表示,打了i个怪物,消耗j的耐力值,所得到的最大经验值 代码如下: #include<iostream>#include<algorithm>#include<

csu(背包的变形题)

题目链接 这是一道背包的变形题目。好题呀 题意:给n个怪物,m个人,每个人的魔法消耗和魔法伤害不同,求打死所有怪物所需的魔法 #include<iostream>#include<algorithm>#include<cstring>#include<stack>#include<queue>#include<set>//#include<u>#include<map

hdu1011(背包树形DP)

没有完全理解这题, m个人,攻打一个map,map的入口是1,在攻打某个结点之前要先攻打其他一个结点 dp[i][j]表示m个人攻打以第i个结点为根节点的子树得到的最优解 状态转移dp[i][ j ] = max(dp[i][j], dp[i][k]+dp[t][j-k]),其中t是i结点的子节点 代码如下: #include<iostream>#include<algorithm

hdu1171(母函数或多重背包)

题意:把物品分成两份,使得价值最接近 可以用背包,或者是母函数来解,母函数(1 + x^v+x^2v+.....+x^num*v)(1 + x^v+x^2v+.....+x^num*v)(1 + x^v+x^2v+.....+x^num*v) 其中指数为价值,每一项的数目为(该物品数+1)个 代码如下: #include<iostream>#include<algorithm>