Unreal Engine 4 Postprocess

はじめに UE4のRendererModuleはユーザが独自のパスを追加できるいくつかのコールバックがあります. Unityのように

C# State Machine

はじめに C#用の状態機械を考えてみます. 経験では, 階層化やマルチスレッド対応などの高度な機能が役に立ったことはないです. 単純で使

NVIDIA Nsight Graphicsの不具合のような挙動

はじめに 不具合かもしれませんが, 検証をしていません. 無駄な時間を過ごしたためノートだけとっておきます. 環境 NVIDIA Nsight Graphics 2021.5.10 GPU Geforce 2080 Driver 497.29 現象

Intel SPMD Program Compiler on Visual Studio

Introduction The CMake, from ver. 3.21, supports Intel SPMD Program Compiler (ISPC), but only for make and Ninja. I often use Visual Studio for C++ developments, and so need useful code pieces for CMakeLists.txt. Functions This is always included from the root CMakeLists.txt. Ofcourse I know that gathering sources automatically is not recommended. function(add_ispcs ISPC_OBJECTS FILES) set(OBJECT_FILES "") foreach(SOURCE_FILE IN LISTS FILES) string(REPLACE ".ispc" ".

Unreal SceneCaptureComponent

はじめに Unreal Engine4 (UE4) で, メインカメラとは別の視点から描画したい場合, USceneCaptureComponent2Dを試すことになると