Unity实战案例全解析 :PVZ 植物脚本分析

植物都继承了Pants脚本,但是我因为没注意听讲,把Pants也挂在植物上了,所以子类的PlantEnableUpdate和PlantDisableUpdate抢不过父类,无法正确触发动画,我还找不到哪里出了问题,所以就使用了携程加while强行触发了,但是经过对源码和工程的分析比对,我发现了问题所在,所以写都写了就这样吧,又不是不能跑,而且协程优化还好一些吗,气死我了呜呜,耽误了好几个小时,下次我一定好好听课呜呜呜

植物状态脚本

cs 复制代码
using System;
using System.Collections;
using System.Collections.Generic;
using System.Data;
using Unity.VisualScripting;
using UnityEngine;
using static ControlState;

//植物状态枚举
enum PlantsState {
    Disable,
    Enable
}
public class Plants : MonoBehaviour {
  

    //拿到植物类型
    public PlantType plantType;
    PlantsState plantsState = PlantsState.Disable;
   

    private void Awake() {
    plantType = PlantType.Sun_Flower;
    Translate2Disable();
    }

    private void Update() {

        switch (plantsState) {
            case PlantsState.Disable:
                PlantDisableUpdate();
                break;
            case PlantsState.Enable:
                PlantEnableUpdate();
                break;
            default:
                break;
        }
    }

    protected virtual void PlantEnableUpdate() {

    }

    protected virtual void PlantDisableUpdate() {

    }

    public void Translate2Disable() {
        Debug.Log("关闭");
        plantsState = PlantsState.Disable;
        GetComponent<Animator>().enabled = false;
    }

    public void Translate2Enable() {
        Debug.Log("开启");
        plantsState = PlantsState.Enable;
        GetComponent<Animator>().enabled = true;
    }
}

向日葵脚本

cs 复制代码
using System.Collections;
using UnityEngine;
using System.Collections.Generic;
using Unity.VisualScripting;

public class SunFlower : Plants {
    private Animator animator;
    public GameObject sunPrefab; // 阳光预制体
    public float minTime = 4f; // 最小生成时间
    public float maxTime = 10f;//最大生成时间
    public float offsetY = -0.5f;
    public float offsetX;
    

    private void Awake() {
        animator = this.GetComponent<Animator>();
    }
    private void Start() {
        StartCoroutine(GenerateSun());
    }
    protected override void PlantEnableUpdate() {
        //if (!isGeneratingSun) {
        //    isGeneratingSun = true;
            
        //}
    }

    private IEnumerator GenerateSun() {
        while (true) {
            // 随机等待时间
            float waitTime = Random.Range(minTime, maxTime);
            yield return new WaitForSeconds(waitTime);

            animator.SetTrigger("CreatSun");
            yield return new WaitForSeconds(1f);
            // 随机生成阳光位置
            offsetX = Random.Range(-0.5f, 0.5f);
            Vector3 sunPosition = new Vector3(transform.position.x + offsetX, transform.position.y + offsetY, transform.position.z);
            GameObject sunInstance = Instantiate(sunPrefab, transform.position, Quaternion.identity);

            // 获取 Sun 组件并调用 JumpTo 方法
            Sun sunComponent = sunInstance.GetComponent<Sun>();
            if (sunComponent != null) {
                sunComponent.JumpTo(sunPosition);
            }
        }
    }
}

豌豆射手脚本

cs 复制代码
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class PeashShooter : Plants
{
    //攻击间隔
    public float atkTime = 2;
    //攻击计时
    public float atkTimer=0;
    //豌豆预制体
    public GameObject peach;

    //豌豆实例化位置
    public Transform peashPos;
    void Start() {
        PlantEnableUpdate();
        StartCoroutine(GenerateSun());
    }
 
    private IEnumerator GenerateSun() {
        while (true) {
            atkTimer += Time.deltaTime;
            if (atkTimer > atkTime) {
                atkTimer = 0;
                Shoot();
            }
            yield return new WaitForSeconds(0);
        }
}
    public void Shoot() {
        GameObject.Instantiate(peach, peashPos.transform.position,Quaternion.identity);
    }
}
相关推荐
小春熙子26 分钟前
Unity图形学之Shader结构
unity·游戏引擎·技术美术
Sitarrrr3 小时前
【Unity】ScriptableObject的应用和3D物体跟随鼠标移动:鼠标放置物体在场景中
3d·unity
极梦网络无忧3 小时前
Unity中IK动画与布偶死亡动画切换的实现
unity·游戏引擎·lucene
逐·風11 小时前
unity关于自定义渲染、内存管理、性能调优、复杂物理模拟、并行计算以及插件开发
前端·unity·c#
_oP_i12 小时前
Unity Addressables 系统处理 WebGL 打包本地资源的一种高效方式
unity·游戏引擎·webgl
代码盗圣16 小时前
GODOT 4 不用scons编译cpp扩展的方法
游戏引擎·godot
Leoysq21 小时前
【UGUI】实现点击注册按钮跳转游戏场景
游戏·unity·游戏引擎·ugui
PandaQue1 天前
《潜行者2切尔诺贝利之心》游戏引擎介绍
游戏引擎
_oP_i1 天前
unity中 骨骼、纹理和材质关系
unity·游戏引擎·材质
Padid2 天前
Unity SRP学习笔记(二)
笔记·学习·unity·游戏引擎·图形渲染·着色器