Hi, I have to add a texture to DecalMaker, by @Chokaphi using a script.
Right now what I'm doing is to get the original JSON, and adding to the array a new JSON class with the path. You can check the code below for reference.
You can call it with
This generates the right JSONClass output (returned by reference), but once I load it DecalMaker returns the values as default:
Checking DecalMaker's code I can see that it overrides the RestoreFromJSON (instead of LateRestoreFromJSON), and it change the variable
Any suggestion?
Right now what I'm doing is to get the original JSON, and adding to the array a new JSON class with the path. You can check the code below for reference.
C#:
public static void LoadOriginTexturesIntoDecalMaker(JSONClass decalMaker, string cls, string part, string texturePath) {
JSONArray elementsInPart = decalMaker[cls][part].AsArray;
JSONClass texture = new JSONClass();
texture["H"].AsFloat = 0f;
texture["S"].AsFloat = 0f;
texture["V"].AsFloat = 1f;
texture["Alpha"].AsFloat = 0f;
texture["RandomName"] = GetRandomName(7);
texture["LinkID"] = "*";
texture["Path"] = texturePath;
elementsInPart[0] = texture;
}
LoadOriginTexturesIntoDecalMaker(containingAtom.GetStorableByID("decal script id here").GetJSON(), "_DecalTex", "face", "path here")
(note: I get the script id by code too, just not wanted to post it here).This generates the right JSONClass output (returned by reference), but once I load it DecalMaker returns the values as default:
C#:
decalMaker.RestoreFromJSON(cls);
SuperController.LogMessage(cls.ToString()); // this is fine
SuperController.LogMessage(containingAtom.GetStorableByID(this._decalMakerId).GetJSON().ToString()); // this is not fine
Checking DecalMaker's code I can see that it overrides the RestoreFromJSON (instead of LateRestoreFromJSON), and it change the variable
_savedData
. This variable is loaded by calling the function PerformLoad()
, but I cannot call it as I'd have to add DecalMaker in the .cslist (and by doing so the script doesn't work), or use reflection (and I cannot use it inside VAM).Any suggestion?