摘要: FooBarComputeShader.usf // Compute shader that does foobar on the GPU #pragma once // File shared across all Plugin's shaders #include "FooCommon.usf" 阅读全文
posted @ 2020-10-27 16:46 Cullchestar 阅读(181) 评论(0) 推荐(0) 编辑
摘要: Absolute World Postion its the position of the surface in world space. if you were to subtract world position from the location of the camera then get 阅读全文
posted @ 2020-10-26 15:38 Cullchestar 阅读(394) 评论(0) 推荐(1) 编辑
摘要: 坐标相关: https://docs.unrealengine.com/en-US/Engine/Rendering/Materials/ExpressionReference/Coordinates/index.html 旋转: rotateAboutAxis: https://www.bilib 阅读全文
posted @ 2020-10-24 18:30 Cullchestar 阅读(109) 评论(0) 推荐(0) 编辑
摘要: ue.EditorUtilityLibrary.get_selected_asset_data() 和 ue.EditorUtilityLibrary.get_selected_assets()的区别:前者返回的是assetdata,后者返回的是Object关键点是 后者会在get之后自动load, 阅读全文
posted @ 2020-10-22 14:01 Cullchestar 阅读(161) 评论(0) 推荐(0) 编辑
摘要: 版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。 本文链接:https://blog.csdn.net/Jingsongmaru/article/details/104571111/ 简而言之就是 C++ 函数调用python文件, pytho 阅读全文
posted @ 2020-10-22 10:58 Cullchestar 阅读(1297) 评论(0) 推荐(0) 编辑
摘要: 参考博客:https://blog.csdn.net/cartzhang/article/details/72834164 在引擎中的定义: // This pair of macros is used to help implement GENERATED_BODY() and GENERATED 阅读全文
posted @ 2020-09-22 18:49 Cullchestar 阅读(278) 评论(0) 推荐(0) 编辑
摘要: 切换输入法后没了warning,但也不知道为什么..先开个坑 阅读全文
posted @ 2020-08-27 17:39 Cullchestar 阅读(2973) 评论(1) 推荐(1) 编辑
摘要: 4.24只有python27没有3.X,所以byebye PySide2 :XX,改用PySide Framework: 这边假设已经设计好UI并且转换为py文件: class Ui_Dialog(object): def setupUi(self, Dialog): Dialog.setObjec 阅读全文
posted @ 2020-08-27 16:45 Cullchestar 阅读(231) 评论(0) 推荐(0) 编辑
摘要: 转载: https://www.cnblogs.com/skiwnchiwns/p/10343028.html DepthFade 这个节点的作用是使得两个透明物体在叠加时显得更加自然。 DepthOfFieldFunction 这个节点的作用如其名称,提供景深的运算结果。0~1的范围代表从聚焦到模 阅读全文
posted @ 2020-08-06 11:53 Cullchestar 阅读(227) 评论(0) 推荐(0) 编辑
摘要: 引擎: 4.24 事前准备: Alembic是作为插件依附在引擎中,要在工程中使用需要先在Build.cs里面加上dependency: PublicIncludePaths.AddRange( new string[] { // ... add public include paths requi 阅读全文
posted @ 2020-07-10 11:11 Cullchestar 阅读(1083) 评论(0) 推荐(0) 编辑