UnrealEngine
Unreal Engine 5 with Vim or Emacs on Linux
· ☕ 10 min read
Unreal Engine 5 with Vim or Emacs on Linux November 17, 2022 Preface The aim of this document is to give a comprehensive guide on how to set up for game development using Unreal Engine 5 with Vim or Emacs (or any other text editor/IDE that is not officially supported). This guide makes some assumptions: You know how to configure your text editor of choice You already know the basics of Unreal Engine 5 You know how to install software on your Linux distribution of choice You are using a text editor/IDE that is capable of using LSP and DAP You have basic knowledge of and are comfortable using the Shell and a little bit of Shell-scripting Personally I use Neovim and Arch Linux, but all information in this guide should also be applicable to every other text editor/IDE with the required feature set and every other Linux distribution (and maybe even Mac or Windows, though I do not use any of those OSes).

2022-08-01-框架基础
· ☕ 3 min read
GameMode: 定义游戏规则。分数。 facets,游戏类型 GameState: 负责启用客户端监控游戏状态, 全局的游戏状态。 管理游戏数据 Player State:

Debugging and autocompletion for Unreal Engine 4 and 5 projects in (Neo)Vim
· ☕ 6 min read
Autocompletion For autocompletion there are two options: coc (Vim, Neovim) LSP (Neovim only) In my experience, coc is easier to set up. If you want to get started as quickly as possible, this is your best bet. Coc Install coc.vim, e.g. with vim-plug inside .vimrc: Plug 'neoclide/coc.nvim' Run :CocInstall coc-clangd You will likely have to familiarize yourself with coc’s shortcuts first or customize it as you see fit. LSP Setting up LSP takes a bit of time but for those that already have it up and running, there is probably not much to do.