Generated new code and added initial data handling

This commit is contained in:
mm00
2025-01-27 19:24:50 +01:00
parent ebcc629feb
commit 146a3992ce
940 changed files with 11560 additions and 9 deletions

View File

@@ -31,6 +31,16 @@ namespace BlendFile.DNA {
public short flag;
[DNAFieldAttribute(7, "char", "_pad0[6]", 1)]
public char[] _pad0 = new System.Char[6];
public WalkNavigation() {
this.mouse_speed = default;
this.walk_speed = default;
this.walk_speed_factor = default;
this.view_height = default;
this.jump_height = default;
this.teleport_time = default;
this.flag = default;
this._pad0 = default;
}
public WalkNavigation(float mouse_speed, float walk_speed, float walk_speed_factor, float view_height, float jump_height, float teleport_time, short flag, char[] _pad0) {
this.mouse_speed = mouse_speed;
this.walk_speed = walk_speed;