This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Unreal Engine 5.0 Python Script that takes in N >= 2 selected StaticMesh Actors, | |
# and subtracts Actors 1..N from the first Actor | |
# | |
import unreal | |
# output path and asset name (random suffix will be appended) | |
BooleanResultBasePath = "/Game/PythonBooleanTest" | |
BooleanResultBaseName = "PyBoolean" |