[TASK] Initial commit with basic product setup
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Mapbox.Unity.MeshGeneration.Modifiers;
|
||||
|
||||
namespace Mapbox.Unity.Map
|
||||
{
|
||||
public interface ISubLayerBehaviorModifiers
|
||||
{
|
||||
void IsBuildingIdsUnique(bool isUniqueIds);
|
||||
|
||||
void AddMeshModifier(MeshModifier modifier);
|
||||
void AddMeshModifier(List<MeshModifier> modifiers);
|
||||
List<MeshModifier> GetMeshModifier(Func<MeshModifier, bool> act);
|
||||
void RemoveMeshModifier(MeshModifier modifier);
|
||||
|
||||
void AddGameObjectModifier(GameObjectModifier modifier);
|
||||
void AddGameObjectModifier(List<GameObjectModifier> modifiers);
|
||||
List<GameObjectModifier> GetGameObjectModifier(Func<GameObjectModifier, bool> act);
|
||||
void RemoveGameObjectModifier(GameObjectModifier modifier);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user