atenfyr / UAssetGUI

A tool designed for low-level examination and modification of Unreal Engine game assets by hand.
MIT License
529 stars 75 forks source link

Feature Request: Automation of Asset Editing in UAsset GUI #97

Closed Calamivathan closed 2 months ago

Calamivathan commented 2 months ago

UAsset GUI is a fantastic tool! It would be even better with an automated asset editing feature where we can input a string and value to update across the entire file. Adding the ability to control this process using a programming language like Python would be a game-changer, allowing for more complex and customized asset management.

OR if you could make a python module to do all these task would be GREAT!!!

if you could help me build it form myself using the uasset api :)

atenfyr commented 2 months ago

Hi,

I take your request to mean that you would like some thoughts on how to do something like this for your own purposes. You should be able to interface with UAssetAPI, which you can use to create your own software that manipulates .uasset files however you like, in Python using the Python.NET module. A brief guide and some thoughts exist on the website at https://atenfyr.github.io/UAssetAPI/ for interfacing with UAssetAPI in the C# programming language. I don't have much personal insight to offer into using Python.NET effectively.