22 lines
374 B
C#
22 lines
374 B
C#
|
using Godot;
|
||
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using Godot.Collections;
|
||
|
|
||
|
namespace Rokojori
|
||
|
{
|
||
|
public partial class LODCameraDistanceRule:LODLevelVisibilityRule
|
||
|
{
|
||
|
[Export]
|
||
|
public float minDistance;
|
||
|
|
||
|
[Export]
|
||
|
public float maxDistance;
|
||
|
|
||
|
public override bool Evaluate( LODNode lodNode )
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|