blob: ef1b3c7b133dee7bedab8f2936b987f98900b263 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
namespace NGS.MeshFusionPro;
public class CombinedLODGroupMatcher : CombinedObjectMatcher<CombinedLODGroup, LODGroupCombineSource>
{
private LODGroupSettings _settings;
public override void StartMatching(CombinedLODGroup combinedObject)
{
_settings = combinedObject.Settings;
}
public override bool CanAddSource(LODGroupCombineSource source)
{
return source.Settings.IsEqual(_settings, 0.01f, 0.01f);
}
public override void SourceAdded(LODGroupCombineSource source)
{
}
}
|