8wDlpd.png
8wDFp9.png
8wDEOx.png
8wDMfH.png
8wDKte.png

未找到 .next/static/index.html'(2:没有此文件或目录),NextJs 在 plesk 服务器上部署

Jashvita 2月前

51 0

好的,我做了一些学习的东西,我需要我的电梯停几秒钟 private IEnumerator ReversePlatform() { Yield return new WaitForSeconds(2); _AccuTime = 0...

好的,我做了一些学习工作,我需要让电梯停几秒钟

   private IEnumerator ReversePlatform()
    {
        yield return new WaitForSeconds(2); 
        _AccuTime = 0;
        speed = -speed;
    }

我在这里打电话,我的电梯就开始摇晃并上升,它们不会下降

        if (_AccuTime > _RunTime)
        {
            StartCoroutine("ReversePlatform");
        }
        else 
        {
            transform.Translate(0, speed * Time.deltaTime, 0);
        }

我需要它们上升,停留大约 2 秒,然后持续下降

帖子版权声明 1、本帖标题:未找到 .next/static/index.html'(2:没有此文件或目录),NextJs 在 plesk 服务器上部署
    本站网址:http://xjnalaquan.com/
2、本网站的资源部分来源于网络,如有侵权,请联系站长进行删除处理。
3、会员发帖仅代表会员个人观点,并不代表本站赞同其观点和对其真实性负责。
4、本站一律禁止以任何方式发布或转载任何违法的相关信息,访客发现请向站长举报
5、站长邮箱:yeweds@126.com 除非注明,本帖由Jashvita在本站《ubuntu》版块原创发布, 转载请注明出处!
最新回复 (0)
  • 这是因为 StartCoroutine 可以多次启动同一个协程,所以您从未添加检查以确保该协程 ReversePlatform 尚未运行:

    private Coroutine reverseCoroutine;
    
    private IEnumerator ReversePlatform()
    {
        yield return new WaitForSeconds(2); 
         _AccuTime = 0;
        speed = -speed;
        reverseCoroutine = null;
    }
    
    if (_AccuTime > _RunTime)
    {
        if (reverseCoroutine == null)
        {
            reverseCoroutine = StartCoroutine("ReversePlatform");
        }
    }
    else 
    {
        transform.Translate(0, speed * Time.deltaTime, 0);
    }
    
返回
作者最近主题: