当前位置: 首页 > article >正文

【vscode】调试cocos creator

先看看 官方教程–使用 VS Code 调试网页版游戏

一、安装插件

Debugger for Chrome已弃用

  • 安装 JavaScript Debugger (Nightly) 插件替代,其他步骤完全一样。

二、通过cocos creator打开任意js脚本,按F5,选择Web 应用(Chrome)

在这里插入图片描述

自动生成 launch.json如下

{
    // 使用 IntelliSense 了解相关属性。 
    // 悬停以查看现有属性的描述。
    // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "type": "chrome",
            "request": "launch",
            "name": "Launch Chrome against localhost",
            "url": "http://localhost:8080",
            "webRoot": "${workspaceFolder}"
        }
    ]
}

三、修改url端口成7456

launch.json如下

{
    // 使用 IntelliSense 了解相关属性。 
    // 悬停以查看现有属性的描述。
    // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "type": "chrome",
            "request": "launch",
            "name": "Launch Chrome against localhost",
            "url": "http://localhost:7456",
            "webRoot": "${workspaceFolder}"
        }
    ]
}

四、按F5进行调试

正常情况下应该可以调试了。

其他错误

1.找不到浏览器

Unable to launch browser: “Unable to find an installation of the browser on your system. Try installing it, or providing an absolute path to the browser in the “runtimeExecutable” in your launch.json.”

在这里插入图片描述
查看谷歌浏览器安装路径,修改launch.json如下

{
    // 使用 IntelliSense 了解相关属性。 
    // 悬停以查看现有属性的描述。
    // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "type": "chrome",
            "request": "launch",
            "name": "Launch Chrome against localhost",
            "url": "http://localhost:7456",
            "runtimeExecutable": "C:/Users/Administrator/AppData/Local/MyChrome/Chrome/Application/chrone.exe",
            "webRoot": "${workspaceFolder}"
        }
    ]
}

runtimeExecutable 就是谷歌浏览器所在路径。

2. 断点异常(打不上断点)

This breakpoint was initially set in:
E:\Project\xxx\assets\scripts\AppStart.js line 22 column 1
❓ We couldn’t find a corresponding source location, but found some other files with the same name:
E:\Project\xxx\assets\scripts\AppStart.js
e:\Project\xxx \assets\scripts\AppStart.js
You may need to adjust the webRoot in your launch.json if you’re building from a subfolder, or tweak your sourceMapPathOverrides.

这类问题,找了很久的解决方案,后面稀里糊涂解决了我个人的问题。

修改launch.json如下: (仅供参考)

{
    // 使用 IntelliSense 了解相关属性。 
    // 悬停以查看现有属性的描述。
    // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "type": "chrome",
            "request": "launch",
            "name": "Launch Chrome against localhost",
            "url": "http://localhost:7456",
            "runtimeExecutable": "C:/Users/Administrator/AppData/Local/MyChrome/Chrome/Application/chrone.exe",
            "webRoot": "${workspaceFolder}/scripts"
        }
    ]
}

http://www.kler.cn/a/5886.html

相关文章:

  • Kubernetes Gateway API-5-后端协议和网关基础设置标签
  • 数据库高安全—角色权限:权限管理权限检查
  • G-Star Landscape 2.0 重磅发布,助力开源生态再升级
  • MMDetection框架下的常见目标检测与分割模型综述与实践指南
  • PostgreSQL 18新特性之uuidv7函数
  • OpenAI 故障复盘 - 阿里云容器服务与可观测产品如何保障大规模 K8s 集群稳定性
  • Python 文件读取
  • 【Java】快速接入ChatGPT API实现聊天、生成图像
  • 浏览器解析资源
  • dmesg 时间误差现象
  • LAZADA数据平台API接入
  • GDB调试器
  • 我的谷歌书签
  • HTTP协议发展历程-HTTP2【协议篇】
  • C++中的重载运算符
  • 【springBoot篇2】springBoot日志篇
  • ElasticSearch ( 八 ) 高亮显示
  • C语言数据结构初阶(9)----树的概念及性质
  • 读书笔记|《高质量读研:教你如何写论文、做科研》 张军平
  • GPT-5紧急叫停?千名专家联名呼吁,AI技术的未来又该何去何从?
  • 【动态绘图】python可视化--丝滑版
  • 10秒去除WPS Office弹窗广告教程(2023.3.31最新)
  • ThreeJS-纹理加载进度(十四)
  • 小驰私房菜_02_Qcom 高通平台 新增加driver,需要准备哪些东西?
  • IOC和AOP以及spring框架
  • LeetCode-583. 两个字符串的删除操作