Python Input & Output Variables In Blueprints Utilities - Unreal Engine 5 Tutorial

Опубликовано: 03 Март 2025
на канале: MattLakeTA
12,913
241

Unreal Python Documentation
https://docs.unrealengine.com/5.0/en-...

A tutorial demonstration on how to use input and output variables in Python Files from within an Editor Utility Widget Blueprint within Unreal Engine 5.

Website - https://matthewlake.net/
Twitter -   / mattlaketa  
LinkedIn -   / mattlaketa  

#UnrealEngine5 #Unreal #Python

-- Unreal Code --
import sys
sys.path.append("D:\Tutorials\Scripts")
import tutorial

import importlib
importlib.reload(tutorial)

output = tutorial.ML_function(input)

-- Script Code --
def ML_function(argument):
return argument+'_123'