35 lines
1.1 KiB
C#
35 lines
1.1 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 BlendFile.CompatTypes;
|
|
using System;
|
|
|
|
|
|
namespace BlendFile.DNA {
|
|
|
|
public class SwirlShaderFxData {
|
|
public ShaderFxData shaderfx;
|
|
public Object ptr_object;
|
|
public int flag;
|
|
public int radius;
|
|
public float angle;
|
|
public int transparent;
|
|
public ShaderFxData_Runtime runtime;
|
|
public SwirlShaderFxData(ShaderFxData shaderfx, Object ptr_object, int flag, int radius, float angle, int transparent, ShaderFxData_Runtime runtime) {
|
|
this.shaderfx = shaderfx;
|
|
this.ptr_object = ptr_object;
|
|
this.flag = flag;
|
|
this.radius = radius;
|
|
this.angle = angle;
|
|
this.transparent = transparent;
|
|
this.runtime = runtime;
|
|
}
|
|
}
|
|
}
|