Regenerated all the files

This commit is contained in:
Samuele Lorefice
2025-01-22 20:24:55 +01:00
parent 162f888600
commit bf1eb8201c
939 changed files with 10620 additions and 0 deletions

View File

@@ -11,15 +11,24 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public struct WalkNavigation {
[DNAFieldAttribute(0, "float", "mouse_speed", 4)]
public float mouse_speed;
[DNAFieldAttribute(1, "float", "walk_speed", 4)]
public float walk_speed;
[DNAFieldAttribute(2, "float", "walk_speed_factor", 4)]
public float walk_speed_factor;
[DNAFieldAttribute(3, "float", "view_height", 4)]
public float view_height;
[DNAFieldAttribute(4, "float", "jump_height", 4)]
public float jump_height;
[DNAFieldAttribute(5, "float", "teleport_time", 4)]
public float teleport_time;
[DNAFieldAttribute(6, "short", "flag", 2)]
public short flag;
[DNAFieldAttribute(7, "char", "_pad0[6]", 1)]
public char[] _pad0 = new System.Char[6];
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;