Files
BlenderSharp/BlendFile/DNA/BoidRuleAvoidCollision.cs
2025-03-04 18:48:04 +01:00

36 lines
1.2 KiB
C#

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
namespace BlendFile.DNA {
using BlendFile;
[DNAClassAttribute(118, "BoidRuleAvoidCollision", 64)]
public class BoidRuleAvoidCollision {
[DNAFieldAttribute(56, "BoidRule", 0, "rule", "BoidRule", false, 0)]
public BoidRule rule;
[DNAFieldAttribute(4, "int", 1, "options", "int", false, 56)]
public int options;
[DNAFieldAttribute(4, "float", 2, "look_ahead", "float", false, 60)]
public float look_ahead;
public BoidRuleAvoidCollision() {
this.rule = default;
this.options = default;
this.look_ahead = default;
}
public BoidRuleAvoidCollision(BoidRule rule, int options, float look_ahead) {
this.rule = rule;
this.options = options;
this.look_ahead = look_ahead;
}
}
}