Updates ImageAsset usage to utilize AssetRef, and standardizes the setter/getter functions and naming conventions, as well as the ability to use and bind named targets.

This commit is contained in:
JeffR 2026-06-16 17:39:30 -05:00
parent a858d8624e
commit 34e3f78a22
82 changed files with 1451 additions and 951 deletions

View file

@ -608,7 +608,7 @@ function DecalEditorGui::updateDecalPreview( %this, %material )
{
%matAsset = AssetDatabase.acquireAsset(%material);
%previewImage = %matAsset.materialDefinitionName.getDiffuseMap(0);
%previewImage = %matAsset.materialDefinitionName.getDiffuseMapAsset(0);
//AssetDatabase.releaseAsset(%material);
}
else if(AssetDatabase.getAssetType(%material) $= "ImageAsset")
@ -644,7 +644,7 @@ function DecalEditorGui::updateInstancePreview( %this, %material )
{
%matAsset = AssetDatabase.acquireAsset(%material);
%previewImage = %matAsset.materialDefinitionName.getDiffuseMap(0);
%previewImage = %matAsset.materialDefinitionName.getDiffuseMapAsset(0);
}
else if(AssetDatabase.getAssetType(%material) $= "ImageAsset")
{