会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
MichaelCen
博客园
|
首页
|
新随笔
|
新文章
|
联系
|
订阅
|
管理
[置顶]
蓝图Tips
摘要: 有些好用的节点,不写下来,很容易忘掉。 1. 调用命令行 全屏:r.setRes 1920 x 1080 f窗口:r.setRes 1920 x 1080 w 2. 播放视频 播放后要播一小段才能进行暂停! 3. 关于Scroll Box 1. 不要勾选Size to content, 否则无法拉动
阅读全文
posted @ 2019-03-08 15:58 MichaelCen
阅读(559)
评论(2)
推荐(1)
编辑
[置顶]
UE4 C++ Tips
摘要: 篇写的是关于UE4的C++方面的小技巧: 1.在构造函数里 //构建组件 RootComponent = CreateDefaultSubobject<USceneComponent>(TEXT("RootComponent")); Camera = CreateDefaultSubobject<U
阅读全文
posted @ 2018-11-19 16:05 MichaelCen
阅读(3029)
评论(0)
推荐(1)
编辑
2024年10月16日
在特定位置播放Sequence
摘要: 前提这个TargetActor和sequence里面的某个Actor一模一样,且sequence里面的这个Actor起始位置为0,0,0。
阅读全文
posted @ 2024-10-16 10:28 MichaelCen
阅读(6)
评论(0)
推荐(0)
编辑
2024年8月16日
结构体的编写
摘要: USTRUCT(BlueprintType) struct FClientDataStruct { GENERATED_USTRUCT_BODY() //目标职业 UPROPERTY(EditAnywhere, BlueprintReadWrite) ESTPlayerJob TargetJob;
阅读全文
posted @ 2024-08-16 15:38 MichaelCen
阅读(3)
评论(0)
推荐(0)
编辑
2024年8月14日
接口的使用
摘要: .h // This class does not need to be modified. UINTERFACE(MinimalAPI, Blueprintable) class UStepInterface : public UInterface { GENERATED_BODY() }; /*
阅读全文
posted @ 2024-08-14 14:16 MichaelCen
阅读(1)
评论(0)
推荐(0)
编辑
2024年8月13日
获取子系统
摘要: UStepSystemSubsystem* StepSystemSubsystem = UGameplayStatics::GetGameInstance(this)->GetSubsystem<UStepSystemSubsystem>();
阅读全文
posted @ 2024-08-13 13:48 MichaelCen
阅读(3)
评论(0)
推荐(0)
编辑
2023年8月16日
获取头戴显示器位置和旋转
摘要:
阅读全文
posted @ 2023-08-16 14:19 MichaelCen
阅读(5)
评论(0)
推荐(0)
编辑
2023年7月12日
鼠标悬浮在UI上的表现变化
摘要: 这是隐藏。 通过控制器来隐藏鼠标在UI上是行不通的。 蓝图设置如下图:
阅读全文
posted @ 2023-07-12 16:20 MichaelCen
阅读(35)
评论(0)
推荐(0)
编辑
2023年3月14日
折叠代码块
摘要: #pragma region 代码块命名 一堆代码 #pragma endregion
阅读全文
posted @ 2023-03-14 11:19 MichaelCen
阅读(19)
评论(0)
推荐(0)
编辑
2023年3月13日
三目运算
摘要: bool bResult = false;; float a = bResult ? 0 : 1;
阅读全文
posted @ 2023-03-13 15:22 MichaelCen
阅读(33)
评论(0)
推荐(0)
编辑
2022年11月17日
获取UI在屏幕上的坐标
摘要: 注意:这是DPI为1时的坐标,有需要可以乘上
阅读全文
posted @ 2022-11-17 15:42 MichaelCen
阅读(310)
评论(0)
推荐(0)
编辑
2022年11月9日
获取当前窗口分辨率
摘要:
阅读全文
posted @ 2022-11-09 16:28 MichaelCen
阅读(23)
评论(0)
推荐(0)
编辑
下一页
公告