Added memoryOffset value to DNAFieldAttribute, regenerated files.

This commit is contained in:
Samuele Lorefice
2025-02-20 21:00:55 +01:00
parent b171b65aa5
commit f383debd18
939 changed files with 9636 additions and 9605 deletions

View File

@@ -15,19 +15,19 @@ namespace BlendFile.DNA {
[DNAClassAttribute(353, "LightProbeCache", 160)]
public struct LightProbeCache {
[DNAFieldAttribute(0, "float", "position[3]", "System.Single[]", 12, false)]
[DNAFieldAttribute(0, "float", "position[3]", "System.Single[]", 12, false, 0)]
public float[] position = new System.Single[3];
[DNAFieldAttribute(1, "float", "parallax_type", "float", 4, false)]
[DNAFieldAttribute(1, "float", "parallax_type", "float", 4, false, 12)]
public float parallax_type;
[DNAFieldAttribute(2, "float", "attenuation_fac", "float", 4, false)]
[DNAFieldAttribute(2, "float", "attenuation_fac", "float", 4, false, 16)]
public float attenuation_fac;
[DNAFieldAttribute(3, "float", "attenuation_type", "float", 4, false)]
[DNAFieldAttribute(3, "float", "attenuation_type", "float", 4, false, 20)]
public float attenuation_type;
[DNAFieldAttribute(4, "float", "_pad3[2]", "System.Single[]", 8, false)]
[DNAFieldAttribute(4, "float", "_pad3[2]", "System.Single[]", 8, false, 24)]
public float[] _pad3 = new System.Single[2];
[DNAFieldAttribute(5, "float", "attenuationmat[4][4]", "System.Single[,]", 64, false)]
[DNAFieldAttribute(5, "float", "attenuationmat[4][4]", "System.Single[,]", 64, false, 32)]
public float[,] attenuationmat = new System.Single[4,4];
[DNAFieldAttribute(6, "float", "parallaxmat[4][4]", "System.Single[,]", 64, false)]
[DNAFieldAttribute(6, "float", "parallaxmat[4][4]", "System.Single[,]", 64, false, 96)]
public float[,] parallaxmat = new System.Single[4,4];
public LightProbeCache() {
this.position = default;