阿六_Dexter
[Unreal Engine] DTSpeechVoice text-to-speech playback plugin description
This plug-in can use blueprints in UE to convert text into speech playback. The sound engine used for playback uses the Windows built-in speech engine and supports Win10 and Win11.
Window 命令行查看 EXE或者DLL的依赖库
dumpbin /dependents 文件绝对路径 首先打开VS命令行窗口 如VS2022 输入命令 dumpbin /dependents D:\test\test.exe 即可打印出此程序所需要的依赖库
[UE Unreal Engine] DTLoadFbx runtime loading FBX local model plug-in description
This plugin can dynamically load FBX models when running after packaging.
C++ 的关键字(保留字)完整介绍
1. asm asm (指令字符串):允许在 C++ 程序中嵌入汇编代码。 2. auto auto(自动,automatic)是存储类型标识符,表明变量”自动”具有本地范围,块范围的变量声明(如for循环体内的变量声明)默认为auto存储类型。 3. bool bool(布尔)类型,C++ 中的基本数据结构,其值可选为 true(真)或者 false(假)。C++ 中的...
