search
HomeDevelopment ToolsVSCodeWhat to do if vscode lua breakpoint fails

What to do if vscode lua breakpoint fails

What should I do if the lua breakpoint fails in vscode?

Using VSCode breakpoints to debug Lua tutorial

1. Install Visual Studio Code (vscode) and search and install luaide in the Plug-in Center

What to do if vscode lua breakpoint fails

2. Configure luach.json

1. Drag the project folder directly into vscode

2. Debug icon in the left column->Settings-> ;Select LuaDebug, and the launch.json file will appear

What to do if vscode lua breakpoint fails

3. Find the exePath field in the launch.json file and modify it to the simulator path

For example : "exePath": "D:/xxx/player-3.x/player3.exe",

Just configure the default in other places.

三.lua breakpoint debugging configuration

1. Download the file LuaDebug.lua

Address: https://github.com/k0204/LuaIde

What to do if vscode lua breakpoint fails

2. Place the LuaDebug.lua file in the project src directory

What to do if vscode lua breakpoint fails

3. Add debugging code

Add the following code in the main.lua file:

        local breakInfoFun,xpcallFun = require("LuaDebug")("localhost", 7003)
           
            --3.x
            --1.断点定时器添加
            cc.Director:getInstance():getScheduler():scheduleScriptFunc(breakInfoFun, 0.3, false)
            --2.程序异常监听
            function G__TRACKBACK(errorMessage)
            debugXpCall();
            print("----------------------------------------")
            local msg = debug.traceback(errorMessage, 3)
            print(msg)
            print("----------------------------------------")
            end
            local status, msg = xpcall(main, G__TRACKBACK)
            --如果是2.x
            CCDirector:sharedDirector():getScheduler():scheduleScriptFunc(breakInfoFun, 0.3, false)
            function G__TRACKBACK(errorMessage)
            debugXpCall();
            print("----------------------------------------")
            local msg = debug.traceback(errorMessage, 3)
            print(msg)
            print("----------------------------------------")
            end
            local status, msg = xpcall(main, G__TRACKBACK)

What to do if vscode lua breakpoint fails

##4. Debugging:

1. Press F5 to start debugging

Debugging Once started, the debug command bar will be displayed at the top of the editor

What to do if vscode lua breakpoint fails

Continue/Pause F5

Skip F10

Enter F11

Exit Shift F11

Restart unassigned

Stop debugging Shift F5

2. Click the debug icon in the left view bar of VS Code to open debugging view.

What to do if vscode lua breakpoint fails

3. Some debugging tips

1 The variable area can not only visually see the value, but also directly edit the variable value for debugging, or hover the mouse Edit on the source code in the editor.

2 If you want to keep tracking a certain variable, you can edit that variable into the monitor.

3 Using the call stack, you can know who made the error when the error function was called. By looking at it layer by layer, you can sometimes guess the cause of the error.

4 When the source code is not available but the function name is known, you can create a breakpoint function by pressing at the head of the breakpoint area.

What to do if vscode lua breakpoint fails

5. Edit user code snippets (Snippets)

Menu bar->File->Preferences->User code snippets-> lua

What to do if vscode lua breakpoint fails

Parameter explanation:

prefix : This parameter is a quick entry to use the code segment. For example, the log here will have intelligent perception when inputting the log during use. .

body : This is the main body of the code segment. The code that needs to be set is placed here. If there are line breaks between strings, use \r\n newline characters to separate them. Note that if the value contains special characters, they need to be escaped. .

Multi-line statements are separated by,.

$1 : This is the position of the cursor.

$2 : After using this parameter, a new line will start at the next position of the cursor. Press the tab key to quickly switch. You can also have $3,$4,$5....

description: code segment description, description when using intelligent sensing

The above is the detailed content of What to do if vscode lua breakpoint fails. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
手把手带你会习VSCode debug,不信你还不会!手把手带你会习VSCode debug,不信你还不会!Mar 31, 2022 pm 08:45 PM

2022年了,该学会用VSCode debug了!下面本篇文章手把手带大家会习VSCode debug,希望对大家有所帮助!

浅析VSCode怎么关闭自动更新浅析VSCode怎么关闭自动更新Jun 02, 2022 pm 12:56 PM

VSCode怎么关闭自动更新?下面本篇文章给大家介绍一下VSCode关闭自动更新的方法,希望对大家有所帮助!

手把手带你在VSCode中配置 Geant4 和 Root手把手带你在VSCode中配置 Geant4 和 RootApr 25, 2022 pm 08:57 PM

本篇是VSCode配置文章,手把手教大家怎么在VSCode​中配置使用 Geant4 和 Root,希望对大家有所帮助!

扒一扒vscode Prettier选项中的16个实用属性,让代码变美!扒一扒vscode Prettier选项中的16个实用属性,让代码变美!May 03, 2022 am 10:00 AM

本篇文章扒拉一下vscode Prettier的选项,总结分享16个让你的代码变漂亮的属性,希望对大家有所帮助!

23个提高开发效率的前端VSCode插件(快来收藏)23个提高开发效率的前端VSCode插件(快来收藏)Jul 25, 2022 pm 08:06 PM

本篇文章给大家分享23个前端VSCode插件,助你提高开发效率,让你事半功倍,快来收藏吧!

总结分享12个好玩有趣的 VSCODE 插件总结分享12个好玩有趣的 VSCODE 插件May 27, 2022 am 11:06 AM

“工欲善其事,必先利其器!”,vscode作为前端开发的重要工具,其插件能大幅提升战斗力,精心收集12个插件,总有几款你还未曾拥有。

VSCode中如何开发uni-app?(教程分享)VSCode中如何开发uni-app?(教程分享)May 13, 2022 pm 08:11 PM

VSCode中如何开发uni-app?下面本篇文章给大家分享一下VSCode中开发uni-app的教程,这可能是最好、最详细的教程了。快来看看!

手把手教你在VScode中配置C/C++环境(Win下)手把手教你在VScode中配置C/C++环境(Win下)Oct 10, 2022 pm 06:52 PM

VScode中怎么开发置C/C++?怎么配置C/C++环境?下面本篇文章给大家分享一下Windows系统下VScode配置C/C++环境图文教程,希望对大家有所帮助!

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function