Skip to content

Instantly share code, notes, and snippets.

@Phyronnaz
Phyronnaz / SampleHeightmap_Bicubic.ispc
Last active February 17, 2024 09:32
Bicubic heightmap interpolation in ISPC
// MIT License
//
// Copyright (c) 2023 Voxel Plugin
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
@Phyronnaz
Phyronnaz / UE4-build.bat
Created June 14, 2020 10:15 — forked from drewsberry/UE4-build.bat
UE4 Windows command line building
:: Build client
RunUAT BuildCookRun -project="full_path.uproject"^
-noP4 -platform=Win64^
-clientconfig=Development -serverconfig=Development^
-cook -allmaps -build -stage^
-pak -archive -archivedirectory="Output Directory"
:: Cook client
RunUAT BuildCookRun -project="full_project_path_and_project_name".uproject^
-noP4 -platform=Win64^
@Phyronnaz
Phyronnaz / UE4-build.bat
Created June 14, 2020 10:15 — forked from drewsberry/UE4-build.bat
UE4 Windows command line building
:: Build client
RunUAT BuildCookRun -project="full_path.uproject"^
-noP4 -platform=Win64^
-clientconfig=Development -serverconfig=Development^
-cook -allmaps -build -stage^
-pak -archive -archivedirectory="Output Directory"
:: Cook client
RunUAT BuildCookRun -project="full_project_path_and_project_name".uproject^
-noP4 -platform=Win64^
@Phyronnaz
Phyronnaz / MaterialExpressionPack.cpp
Last active May 29, 2020 23:26
Unreal Engine Material Graph Pack Node
// Copyright 2020 Phyronnaz
#include "MaterialExpressionPack.h"
#include "MaterialCompiler.h"
#include "EdGraph/EdGraphNode.h"
#include "Materials/MaterialFunction.h"
#include "Materials/MaterialExpressionReroute.h"
#include "Materials/MaterialExpressionFunctionInput.h"
#include "Materials/MaterialExpressionFunctionOutput.h"
#include "Materials/MaterialExpressionMaterialFunctionCall.h"