摘要:Web: https://docs.unrealengine.com/latest/INT/Engine/Blueprints/GettingStarted/index.html 1. Blueprint-specific markup available in Unreal Engine's C+
阅读全文
随笔分类 - UE4 Note
摘要:Web: https://docs.unrealengine.com/latest/INT/Engine/Blueprints/GettingStarted/index.html 1. Blueprint-specific markup available in Unreal Engine's C+
阅读全文
摘要:When UE4 implement the toon material, it has its own edge test arithmetic, that is use UE4's depth texture and offset the UV to judge the current pixe
阅读全文
摘要:Q:怎样让你的游戏主角可以正对你而不是一直看到他的后背? A:在你的主角类的blueprint里面,点击菜单栏上的”ClassDefault”按钮,在detail面板中的Pawn栏下,将”Use Controller Rotation Yaw”默认的勾选取消;在你的主角类的blueprint里面的C
阅读全文
摘要:UE3或者UE4的FString类型无法在内存中直接看到值,为了debug方便,需要第三方文件的协助,可以将以下两个文件UE3.natvis和UE4.natvis拷贝到$USERPROFILE/Documents/Visual Studio 2012/Visualizers 目录下,在debug的时
阅读全文
摘要:默认情况下,对于unreal的工程里面的配置“DebugGame”会优化掉engine部分的代码,这就意味着除了custom的代码engine的代码是无法进去debug的。 为了debug engine的代码,有几种方法: 1. 关掉一些代码的优化: 2. 如果想要打开整个模块的优化,可以将Opti
阅读全文
摘要:Mem pro 是一个主要集成内存泄露检测的工具,其具有自身的源码和GUI,在GUI中利用”Launch” button进行加载自己待检测的application,目前支持的平台为Windows,Unix, Linux, OSX, IOS, GCC;但是按照官网的说法,其虽然只能运行到WIN上,但是
阅读全文
摘要:整体模块module分析: 打开StrategyGame.uproject来看: 可以看到这里面定义了两个模块, 名字,类型,还有一个”LoadingPhase”的属性; 这个文件里面的内容是自己定义的, 还是自动生成的 ? CONTINUE ... ... 这个demo从整体模块来讲可以看成有两个
阅读全文
摘要:Second uv 可以通过editor来生成; 这部分内容都是在staticMeshEditor这个文件夹下面的代码里; 关于UI的相应机制,有个文件UICommandList.cpp例如我点击static mesh editor里面的tool bar 里面的UVbutton,会生成一条comma
阅读全文
摘要:https://docs.unrealengine.com/latest/CHN/Engine/Matinee/index.html https://docs.unrealengine.com/latest/CHN/Engine/Sequencer/Overview/index.html 1. 把蓝
阅读全文
摘要:https://docs.unrealengine.com/latest/CHN/Gameplay/HowTo/CharacterMovement/index.html 这里的demo是按照一些persona的机制来设定玩家怎样控制一个角色来进行各种行为的; Test Project:D:\Engi
阅读全文
摘要:Web: https://docs.unrealengine.com/latest/INT/Engine/AI/BehaviorTrees/index.html Test project: D:\EngineStudy\Unreal\4.14\TestProject\HowTo_BehaviorTr
阅读全文
|