Beispiel #1
0
 public BoxGroundEffectManager(RangeTypeInherentConfigurationData rangeTypeInherentConfigurationData, BoxRangeObjectRenderingDataProvider BoxRangeObjectRenderingDataProvider) : base(rangeTypeInherentConfigurationData)
 {
     this.BoxRangeObjectRenderingDataProvider = BoxRangeObjectRenderingDataProvider;
 }
Beispiel #2
0
 public FrustumGroundEffectManager(RangeTypeInherentConfigurationData rangeTypeInherentConfigurationData, FrustumRangeObjectRenderingDataProvider FrustumRangeObjectRenderingDataprovider) : base(rangeTypeInherentConfigurationData)
 {
     this.FrustumRangeObjectRenderingDataprovider = FrustumRangeObjectRenderingDataprovider;
     ObstacleOcclusionCalculationManagerV2        = ObstacleOcclusionCalculationManagerV2.Get();
 }
Beispiel #3
0
 public RoundedFrustumGroundEffectManager(RangeTypeInherentConfigurationData rangeTypeInherentConfigurationData, FrustumRangeObjectRenderingDataProvider RoundedFrustumRangeObjectRenderingDataProvider) : base(rangeTypeInherentConfigurationData)
 {
     this.RoundedFrustumRangeObjectRenderingDataProvider = RoundedFrustumRangeObjectRenderingDataProvider;
 }
Beispiel #4
0
 public SphereGroundEffectManager(RangeTypeInherentConfigurationData rangeTypeInherentConfigurationData,
                                  SphereRangeObjectRenderingDataProvider SphereRangeObjectRenderingDataProvider) : base(rangeTypeInherentConfigurationData)
 {
     this.SphereRangeObjectRenderingDataProvider = SphereRangeObjectRenderingDataProvider;
 }
Beispiel #5
0
 public AbstractGroundEffectManager(RangeTypeInherentConfigurationData rangeTypeInherentConfigurationData)
 {
     this.rangeTypeInherentConfigurationData = rangeTypeInherentConfigurationData;
     isGroundEffectTypeToRenderChanged       = false;
     groundEffectTypesToRender = new List <GroundEffectType>();
 }