Inspector中分配的Unity值在代码中抛出空

问题描述 投票:4回答:1

我是Unity的初学者,有一个问题,我无法在任何一个主板上找到答案。创建一个非常基本的Unity C#脚本,我在Awake()函数中有以下几行代码:

Assert.IsNotNull(sfxJump);
Assert.IsNotNull(sfxDeath);
Assert.IsNotNull(sfxCoin);

第三个断言“Assert.IsNotNull(sfxCoin)投掷null,即使硬币AudioClip设置在检查员:

检查器脚本值:

然而 - 这是令我困惑的部分 - 由于某种原因sfxCoin不是nullOnCollisionEnter()例程在相同的脚本中调用

所以看来Unity确实用代码注册了对象 - 最终 - 但是断言失败了,最初的Awake()Start()Update()方法。

这只发生在sfxCoinsfxJumpsfxDeath没有这个问题。

任何帮助,将不胜感激

整个脚本如下:

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Assertions;

public class Player : MonoBehaviour
{
    [SerializeField] private float jumpForce = 100f;
    [SerializeField] private float forwardMomentum = 5f;
    [SerializeField] private AudioClip sfxJump;
    [SerializeField] private AudioClip sfxDeath;
    [SerializeField] private AudioClip sfxCoin; 

    private Animator anim;
    private Rigidbody Rigidbody;
    private bool jump = false;
    private AudioSource audioSource;  

    private void Awake()
    {
        Assert.IsNotNull(sfxJump);
        Assert.IsNotNull(sfxDeath);
        Assert.IsNotNull(sfxCoin);
    }

    // Start is called before the first frame update
    void Start()
    {
        anim = GetComponent<Animator>();
        Rigidbody = GetComponent<Rigidbody>();
        audioSource = GetComponent<AudioSource>();        
    }

    // Update is called once per frame
    void Update()
    {
        if (!GameManager.instance.GameOver() && GameManager.instance.GameStarted())
        { 
            if (Input.GetMouseButton(0))
            {
                GameManager.instance.PlayerStartedGame();

                anim.Play("Jump");
                audioSource.PlayOneShot(sfxJump);
                Rigidbody.useGravity = true;
                jump = true;
            }
        }
    }

    private void FixedUpdate()
    {
        if (jump)
        {
            jump = false;
            Rigidbody.velocity = new Vector2(0, 0);
            Rigidbody.AddForce(new Vector2(forwardMomentum, jumpForce), ForceMode.Impulse);
        }
    }

    private void OnCollisionEnter(Collision collision)
    {
        switch (collision.gameObject.tag)
        {
            case "obstacle":
                Rigidbody.AddForce(new Vector2(-50, 20), ForceMode.Impulse);
                Rigidbody.detectCollisions = false;
                audioSource.PlayOneShot(sfxDeath);
                GameManager.instance.PlayerCollided();
                break;
            case "coin":

                audioSource.PlayOneShot(sfxCoin);
                GameManager.instance.Score(1);
                print("GOT COIN");
                break;

        }
    }
}
c# unity3d
1个回答
0
投票

对不起,我发现了问题所在。

还有一个游戏对象的第二个实例,它也使用了没有设置sfxCoin的相同脚本。它隐藏在层次结构中的一个节点下,所以我没有看到它。

就像我说的那样,我是初学者。

© www.soinside.com 2019 - 2024. All rights reserved.