├── .gitignore ├── Assets ├── Sample Scene.meta ├── Sample Scene │ ├── sample scene.meta │ ├── sample scene.unity │ ├── sample scene.unity.meta │ ├── sample scene │ │ ├── lava.mat │ │ ├── lava.mat.meta │ │ ├── lava_backdrop.mat │ │ ├── lava_backdrop.mat.meta │ │ ├── simple-skybox.mat │ │ └── simple-skybox.mat.meta │ ├── sample sceneSettings.lighting │ └── sample sceneSettings.lighting.meta ├── Test cases.meta └── Test cases │ ├── test_case_1.unity │ ├── test_case_1.unity.meta │ ├── test_case_10.unity │ ├── test_case_10.unity.meta │ ├── test_case_11.unity │ ├── test_case_11.unity.meta │ ├── test_case_12.unity │ ├── test_case_12.unity.meta │ ├── test_case_13.unity │ ├── test_case_13.unity.meta │ ├── test_case_14.unity │ ├── test_case_14.unity.meta │ ├── test_case_15.unity │ ├── test_case_15.unity.meta │ ├── test_case_16.unity │ ├── test_case_16.unity.meta │ ├── test_case_17.unity │ ├── test_case_17.unity.meta │ ├── test_case_18.unity │ ├── test_case_18.unity.meta │ ├── test_case_19.unity │ ├── test_case_19.unity.meta │ ├── test_case_2.unity │ ├── test_case_2.unity.meta │ ├── test_case_20.unity │ ├── test_case_20.unity.meta │ ├── test_case_21.unity │ ├── test_case_21.unity.meta │ ├── test_case_3.unity │ ├── test_case_3.unity.meta │ ├── test_case_4.unity │ ├── test_case_4.unity.meta │ ├── test_case_5.unity │ ├── test_case_5.unity.meta │ ├── test_case_6.unity │ ├── test_case_6.unity.meta │ ├── test_case_7.unity │ ├── test_case_7.unity.meta │ ├── test_case_8.unity │ ├── test_case_8.unity.meta │ ├── test_case_9.unity │ └── test_case_9.unity.meta ├── Documentation └── Images │ ├── active_model.gif │ ├── box_options.PNG │ ├── brush_editing.gif │ ├── chisel_example.png │ ├── convert_to_brush.png │ ├── csg_operations.gif │ ├── generator_operations.png │ ├── hierarchy_model.png │ ├── select_create_tool.gif │ ├── stairs_generator.gif │ └── tool_window_create.png ├── GettingStarted.md ├── LICENSE.md ├── Packages ├── com.chisel.core │ ├── CHANGELOG.md │ ├── CHANGELOG.md.meta │ ├── Chisel.meta │ ├── Chisel │ │ ├── Core.meta │ │ ├── Core │ │ │ ├── 1.Input.meta │ │ │ ├── 1.Input │ │ │ │ ├── BrushMesh.meta │ │ │ │ ├── BrushMesh │ │ │ │ │ ├── BrushMesh.Internal.cs │ │ │ │ │ ├── BrushMesh.Internal.cs.meta │ │ │ │ │ ├── BrushMesh.Optimize.cs │ │ │ │ │ ├── BrushMesh.Optimize.cs.meta │ │ │ │ │ ├── BrushMesh.Utility.cs │ │ │ │ │ ├── BrushMesh.Utility.cs.meta │ │ │ │ │ ├── BrushMesh.Validate.cs │ │ │ │ │ ├── BrushMesh.Validate.cs.meta │ │ │ │ │ ├── BrushMesh.cs │ │ │ │ │ ├── BrushMesh.cs.meta │ │ │ │ │ ├── BrushMeshBlob.internal.cs │ │ │ │ │ ├── BrushMeshBlob.internal.cs.meta │ │ │ │ │ ├── BrushMeshInstance.cs │ │ │ │ │ ├── BrushMeshInstance.cs.meta │ │ │ │ │ ├── BrushMeshManager.Internal.cs │ │ │ │ │ └── BrushMeshManager.Internal.cs.meta │ │ │ │ ├── CompactHierarchy.meta │ │ │ │ ├── CompactHierarchy │ │ │ │ │ ├── CompactHierarchy.Internal.cs │ │ │ │ │ ├── CompactHierarchy.Internal.cs.meta │ │ │ │ │ ├── CompactHierarchy.public.cs │ │ │ │ │ └── CompactHierarchy.public.cs.meta │ │ │ │ ├── GeneratorBase.meta │ │ │ │ ├── GeneratorBase │ │ │ │ │ ├── BrushFactory.Shapes.cs │ │ │ │ │ ├── BrushFactory.Shapes.cs.meta │ │ │ │ │ ├── BrushFactory.Utility.cs │ │ │ │ │ ├── BrushFactory.Utility.cs.meta │ │ │ │ │ ├── ChiselBrushContainer.cs │ │ │ │ │ ├── ChiselBrushContainer.cs.meta │ │ │ │ │ ├── ChiselCurve2DBlob.cs │ │ │ │ │ ├── ChiselCurve2DBlob.cs.meta │ │ │ │ │ ├── ChiselPathBlob.cs │ │ │ │ │ ├── ChiselPathBlob.cs.meta │ │ │ │ │ ├── ChiselPlacementTool.cs │ │ │ │ │ ├── ChiselPlacementTool.cs.meta │ │ │ │ │ ├── ChiselPlacementToolAttribute.cs │ │ │ │ │ ├── ChiselPlacementToolAttribute.cs.meta │ │ │ │ │ ├── DataStructures.meta │ │ │ │ │ ├── DataStructures │ │ │ │ │ │ ├── ChiselPath.cs │ │ │ │ │ │ ├── ChiselPath.cs.meta │ │ │ │ │ │ ├── Curve2D.cs │ │ │ │ │ │ ├── Curve2D.cs.meta │ │ │ │ │ │ ├── Range.cs │ │ │ │ │ │ └── Range.cs.meta │ │ │ │ │ ├── GeneratorJobPool.cs │ │ │ │ │ ├── GeneratorJobPool.cs.meta │ │ │ │ │ ├── IChiselNodeGenerator.cs │ │ │ │ │ ├── IChiselNodeGenerator.cs.meta │ │ │ │ │ ├── Placement.meta │ │ │ │ │ └── Placement │ │ │ │ │ │ ├── Axis.cs │ │ │ │ │ │ ├── Axis.cs.meta │ │ │ │ │ │ ├── IGeneratorHandles.cs │ │ │ │ │ │ ├── IGeneratorHandles.cs.meta │ │ │ │ │ │ ├── PlacementFlags.cs │ │ │ │ │ │ └── PlacementFlags.cs.meta │ │ │ │ ├── Generators.meta │ │ │ │ ├── Generators │ │ │ │ │ ├── Box.meta │ │ │ │ │ ├── Box │ │ │ │ │ │ ├── ChiselBoxBrushMeshFactory.cs │ │ │ │ │ │ ├── ChiselBoxBrushMeshFactory.cs.meta │ │ │ │ │ │ ├── ChiselBoxDefinitions.cs │ │ │ │ │ │ ├── ChiselBoxDefinitions.cs.meta │ │ │ │ │ │ ├── ChiselBoxPlacementTool.cs │ │ │ │ │ │ └── ChiselBoxPlacementTool.cs.meta │ │ │ │ │ ├── Brush.meta │ │ │ │ │ ├── Brush │ │ │ │ │ │ ├── ChiselBrushDefinition.cs │ │ │ │ │ │ └── ChiselBrushDefinition.cs.meta │ │ │ │ │ ├── Capsule.meta │ │ │ │ │ ├── Capsule │ │ │ │ │ │ ├── ChiselCapsuleBrushFactory.cs │ │ │ │ │ │ ├── ChiselCapsuleBrushFactory.cs.meta │ │ │ │ │ │ ├── ChiselCapsuleDefinition.cs │ │ │ │ │ │ ├── ChiselCapsuleDefinition.cs.meta │ │ │ │ │ │ ├── ChiselCapsulePlacementTool.cs │ │ │ │ │ │ └── ChiselCapsulePlacementTool.cs.meta │ │ │ │ │ ├── Cylinder.meta │ │ │ │ │ ├── Cylinder │ │ │ │ │ │ ├── ChiselCylinderBrushFactory.cs │ │ │ │ │ │ ├── ChiselCylinderBrushFactory.cs.meta │ │ │ │ │ │ ├── ChiselCylinderDefinition.cs │ │ │ │ │ │ ├── ChiselCylinderDefinition.cs.meta │ │ │ │ │ │ ├── ChiselCylinderPlacementTool.cs │ │ │ │ │ │ └── ChiselCylinderPlacementTool.cs.meta │ │ │ │ │ ├── ExtrudedShape.meta │ │ │ │ │ ├── ExtrudedShape │ │ │ │ │ │ ├── ChiselExtrudedShapeBrushFactory.cs │ │ │ │ │ │ ├── ChiselExtrudedShapeBrushFactory.cs.meta │ │ │ │ │ │ ├── ChiselExtrudedShapeDefinition.cs │ │ │ │ │ │ ├── ChiselExtrudedShapeDefinition.cs.meta │ │ │ │ │ │ ├── ChiselExtrudedShapePlacementTool.cs │ │ │ │ │ │ └── ChiselExtrudedShapePlacementTool.cs.meta │ │ │ │ │ ├── Hemisphere.meta │ │ │ │ │ ├── Hemisphere │ │ │ │ │ │ ├── ChiselHemisphereBrushFactory.cs │ │ │ │ │ │ ├── ChiselHemisphereBrushFactory.cs.meta │ │ │ │ │ │ ├── ChiselHemisphereDefinition.cs │ │ │ │ │ │ ├── ChiselHemisphereDefinition.cs.meta │ │ │ │ │ │ ├── ChiselHemispherePlacementTool.cs │ │ │ │ │ │ └── ChiselHemispherePlacementTool.cs.meta │ │ │ │ │ ├── LinearStairs.meta │ │ │ │ │ ├── LinearStairs │ │ │ │ │ │ ├── ChiselLinearStairsBrushFactory.cs │ │ │ │ │ │ ├── ChiselLinearStairsBrushFactory.cs.meta │ │ │ │ │ │ ├── ChiselLinearStairsDefinition.cs │ │ │ │ │ │ ├── ChiselLinearStairsDefinition.cs.meta │ │ │ │ │ │ ├── ChiselLinearStairsPlacementTool.cs │ │ │ │ │ │ └── ChiselLinearStairsPlacementTool.cs.meta │ │ │ │ │ ├── PathedStairs.meta │ │ │ │ │ ├── PathedStairs │ │ │ │ │ │ ├── ChiselPathedStairsBrushFactory.cs │ │ │ │ │ │ ├── ChiselPathedStairsBrushFactory.cs.meta │ │ │ │ │ │ ├── ChiselPathedStairsDefinition.cs │ │ │ │ │ │ └── ChiselPathedStairsDefinition.cs.meta │ │ │ │ │ ├── RevolvedShape.meta │ │ │ │ │ ├── RevolvedShape │ │ │ │ │ │ ├── ChiselRevolvedShapeBrushFactory.cs │ │ │ │ │ │ ├── ChiselRevolvedShapeBrushFactory.cs.meta │ │ │ │ │ │ ├── ChiselRevolvedShapeDefinition.cs │ │ │ │ │ │ └── ChiselRevolvedShapeDefinition.cs.meta │ │ │ │ │ ├── Sphere.meta │ │ │ │ │ ├── Sphere │ │ │ │ │ │ ├── ChiselSphereBrushFactory.cs │ │ │ │ │ │ ├── ChiselSphereBrushFactory.cs.meta │ │ │ │ │ │ ├── ChiselSphereDefinition.cs │ │ │ │ │ │ ├── ChiselSphereDefinition.cs.meta │ │ │ │ │ │ ├── ChiselSpherePlacementTool.cs │ │ │ │ │ │ └── ChiselSpherePlacementTool.cs.meta │ │ │ │ │ ├── SpiralStairs.meta │ │ │ │ │ ├── SpiralStairs │ │ │ │ │ │ ├── ChiselSpiralStairsBrushFactory.cs │ │ │ │ │ │ ├── ChiselSpiralStairsBrushFactory.cs.meta │ │ │ │ │ │ ├── ChiselSpiralStairsDefinition.cs │ │ │ │ │ │ ├── ChiselSpiralStairsDefinition.cs.meta │ │ │ │ │ │ ├── ChiselSpiralStairsPlacementTool.cs │ │ │ │ │ │ └── ChiselSpiralStairsPlacementTool.cs.meta │ │ │ │ │ ├── Stadium.meta │ │ │ │ │ ├── Stadium │ │ │ │ │ │ ├── ChiselStadiumBrushFactory.cs │ │ │ │ │ │ ├── ChiselStadiumBrushFactory.cs.meta │ │ │ │ │ │ ├── ChiselStadiumDefinition.cs │ │ │ │ │ │ └── ChiselStadiumDefinition.cs.meta │ │ │ │ │ ├── Torus.meta │ │ │ │ │ └── Torus │ │ │ │ │ │ ├── ChiselTorusBrushFactory.cs │ │ │ │ │ │ ├── ChiselTorusBrushFactory.cs.meta │ │ │ │ │ │ ├── ChiselTorusDefinition.cs │ │ │ │ │ │ └── ChiselTorusDefinition.cs.meta │ │ │ │ ├── Managers.meta │ │ │ │ ├── Managers │ │ │ │ │ ├── ChiselDefaultMaterials.cs │ │ │ │ │ ├── ChiselDefaultMaterials.cs.meta │ │ │ │ │ ├── ChiselMaterialManager.cs │ │ │ │ │ └── ChiselMaterialManager.cs.meta │ │ │ │ ├── Nodes.meta │ │ │ │ ├── Nodes │ │ │ │ │ ├── CSGOperationType.cs │ │ │ │ │ ├── CSGOperationType.cs.meta │ │ │ │ │ ├── CSGTree.Extensions.cs │ │ │ │ │ ├── CSGTree.Extensions.cs.meta │ │ │ │ │ ├── CSGTree.cs │ │ │ │ │ ├── CSGTree.cs.meta │ │ │ │ │ ├── CSGTreeBranch.cs │ │ │ │ │ ├── CSGTreeBranch.cs.meta │ │ │ │ │ ├── CSGTreeBrush.cs │ │ │ │ │ ├── CSGTreeBrush.cs.meta │ │ │ │ │ ├── CSGTreeNode.cs │ │ │ │ │ └── CSGTreeNode.cs.meta │ │ │ │ ├── PropertyAttributes.meta │ │ │ │ ├── PropertyAttributes │ │ │ │ │ ├── AngleValueAttribute.cs │ │ │ │ │ ├── AngleValueAttribute.cs.meta │ │ │ │ │ ├── Conditional.cs │ │ │ │ │ ├── Conditional.cs.meta │ │ │ │ │ ├── ConditionalBaseAttribute.cs │ │ │ │ │ ├── ConditionalBaseAttribute.cs.meta │ │ │ │ │ ├── ConditionalHideAttribute.cs │ │ │ │ │ ├── ConditionalHideAttribute.cs.meta │ │ │ │ │ ├── ConditionalNameAttribute.cs │ │ │ │ │ ├── ConditionalNameAttribute.cs.meta │ │ │ │ │ ├── ConditionalNamePartAttribute.cs │ │ │ │ │ ├── ConditionalNamePartAttribute.cs.meta │ │ │ │ │ ├── DistanceValueAttribute.cs │ │ │ │ │ ├── DistanceValueAttribute.cs.meta │ │ │ │ │ ├── EulerValueAttribute.cs │ │ │ │ │ ├── EulerValueAttribute.cs.meta │ │ │ │ │ ├── HideFoldoutAttribute.cs │ │ │ │ │ ├── HideFoldoutAttribute.cs.meta │ │ │ │ │ ├── NamedItemsAttribute.cs │ │ │ │ │ ├── NamedItemsAttribute.cs.meta │ │ │ │ │ ├── PositionValueAttribute.cs │ │ │ │ │ ├── PositionValueAttribute.cs.meta │ │ │ │ │ ├── ScaleValueAttribute.cs │ │ │ │ │ ├── ScaleValueAttribute.cs.meta │ │ │ │ │ ├── ToggleFlagAttribute.cs │ │ │ │ │ ├── ToggleFlagAttribute.cs.meta │ │ │ │ │ ├── ToggleFlagsAttribute.cs │ │ │ │ │ ├── ToggleFlagsAttribute.cs.meta │ │ │ │ │ ├── UnitType.cs │ │ │ │ │ └── UnitType.cs.meta │ │ │ │ ├── Surfaces.meta │ │ │ │ └── Surfaces │ │ │ │ │ ├── ChiselSurface.cs │ │ │ │ │ ├── ChiselSurface.cs.meta │ │ │ │ │ ├── ChiselSurfaceArray.cs │ │ │ │ │ ├── ChiselSurfaceArray.cs.meta │ │ │ │ │ ├── ChiselSurfaceMetadata.cs │ │ │ │ │ ├── ChiselSurfaceMetadata.cs.meta │ │ │ │ │ ├── InternalChiselSurface.cs │ │ │ │ │ ├── InternalChiselSurface.cs.meta │ │ │ │ │ ├── SurfaceDestinationParameters.cs │ │ │ │ │ ├── SurfaceDestinationParameters.cs.meta │ │ │ │ │ ├── SurfaceDetails.cs │ │ │ │ │ ├── SurfaceDetails.cs.meta │ │ │ │ │ ├── UVMatrix.cs │ │ │ │ │ └── UVMatrix.cs.meta │ │ │ ├── 2.Processing.meta │ │ │ ├── 2.Processing │ │ │ │ ├── CSGConstants.cs │ │ │ │ ├── CSGConstants.cs.meta │ │ │ │ ├── Cache.meta │ │ │ │ ├── Cache │ │ │ │ │ ├── ChiselLookup.cs │ │ │ │ │ └── ChiselLookup.cs.meta │ │ │ │ ├── Categorization.meta │ │ │ │ ├── Categorization │ │ │ │ │ ├── CategoryIndex.cs │ │ │ │ │ ├── CategoryIndex.cs.meta │ │ │ │ │ ├── CategoryRoutingRow.cs │ │ │ │ │ ├── CategoryRoutingRow.cs.meta │ │ │ │ │ ├── RoutingLookup.cs │ │ │ │ │ ├── RoutingLookup.cs.meta │ │ │ │ │ ├── RoutingTable.cs │ │ │ │ │ └── RoutingTable.cs.meta │ │ │ │ ├── Containers.meta │ │ │ │ ├── Containers │ │ │ │ │ ├── HashedVertices.cs │ │ │ │ │ ├── HashedVertices.cs.meta │ │ │ │ │ ├── IDManager.cs │ │ │ │ │ ├── IDManager.cs.meta │ │ │ │ │ ├── PointerReference.cs │ │ │ │ │ ├── PointerReference.cs.meta │ │ │ │ │ ├── SectionManager.cs │ │ │ │ │ └── SectionManager.cs.meta │ │ │ │ ├── Jobs.meta │ │ │ │ ├── Jobs │ │ │ │ │ ├── BuildCompactTreeJob.cs │ │ │ │ │ ├── BuildCompactTreeJob.cs.meta │ │ │ │ │ ├── BuildLookupTablesJob.cs │ │ │ │ │ ├── BuildLookupTablesJob.cs.meta │ │ │ │ │ ├── CacheRemappingJob.cs │ │ │ │ │ ├── CacheRemappingJob.cs.meta │ │ │ │ │ ├── CreateBlobPolygonsBlobsJob.cs │ │ │ │ │ ├── CreateBlobPolygonsBlobsJob.cs.meta │ │ │ │ │ ├── CreateBrushTreeSpacePlanesJob.cs │ │ │ │ │ ├── CreateBrushTreeSpacePlanesJob.cs.meta │ │ │ │ │ ├── CreateIntersectionLoopsJob.cs │ │ │ │ │ ├── CreateIntersectionLoopsJob.cs.meta │ │ │ │ │ ├── CreateRoutingTableJob.cs │ │ │ │ │ ├── CreateRoutingTableJob.cs.meta │ │ │ │ │ ├── CreateTreeSpaceVerticesAndBoundsJob.cs │ │ │ │ │ ├── CreateTreeSpaceVerticesAndBoundsJob.cs.meta │ │ │ │ │ ├── FillBrushMeshBlobLookupJob.cs │ │ │ │ │ ├── FillBrushMeshBlobLookupJob.cs.meta │ │ │ │ │ ├── FillVertexBuffersJob.cs │ │ │ │ │ ├── FillVertexBuffersJob.cs.meta │ │ │ │ │ ├── FindAllBrushIntersectionPairsJob.cs │ │ │ │ │ ├── FindAllBrushIntersectionPairsJob.cs.meta │ │ │ │ │ ├── FindBrushPairsJob.cs │ │ │ │ │ ├── FindBrushPairsJob.cs.meta │ │ │ │ │ ├── FindLoopOverlapIntersectionJob.cs │ │ │ │ │ ├── FindLoopOverlapIntersectionJob.cs.meta │ │ │ │ │ ├── FindModifiedBrushesJob.cs │ │ │ │ │ ├── FindModifiedBrushesJob.cs.meta │ │ │ │ │ ├── GatherBrushIntersectionsJob.cs │ │ │ │ │ ├── GatherBrushIntersectionsJob.cs.meta │ │ │ │ │ ├── GatherOutputSurfacesJob.cs │ │ │ │ │ ├── GatherOutputSurfacesJob.cs.meta │ │ │ │ │ ├── GenerateSurfaceTrianglesJob.cs │ │ │ │ │ ├── GenerateSurfaceTrianglesJob.cs.meta │ │ │ │ │ ├── InvalidateBrushesJob.cs │ │ │ │ │ ├── InvalidateBrushesJob.cs.meta │ │ │ │ │ ├── JobData.meta │ │ │ │ │ ├── JobData │ │ │ │ │ │ ├── BasePolygonsBlob.cs │ │ │ │ │ │ ├── BasePolygonsBlob.cs.meta │ │ │ │ │ │ ├── BooleanEdgesUtility.cs │ │ │ │ │ │ ├── BooleanEdgesUtility.cs.meta │ │ │ │ │ │ ├── BrushIntersection.cs │ │ │ │ │ │ ├── BrushIntersection.cs.meta │ │ │ │ │ │ ├── BrushTreeMesh.cs │ │ │ │ │ │ ├── BrushTreeMesh.cs.meta │ │ │ │ │ │ ├── BrushesTouchedByBrush.cs │ │ │ │ │ │ ├── BrushesTouchedByBrush.cs.meta │ │ │ │ │ │ ├── ChiselBrushRenderBuffer.cs │ │ │ │ │ │ ├── ChiselBrushRenderBuffer.cs.meta │ │ │ │ │ │ ├── ChiselLayerParameters.cs │ │ │ │ │ │ ├── ChiselLayerParameters.cs.meta │ │ │ │ │ │ ├── CompactTree.cs │ │ │ │ │ │ ├── CompactTree.cs.meta │ │ │ │ │ │ ├── IndexOrder.cs │ │ │ │ │ │ ├── IndexOrder.cs.meta │ │ │ │ │ │ ├── NodeTransformation.cs │ │ │ │ │ │ └── NodeTransformation.cs.meta │ │ │ │ │ ├── MergeTouchingBrushVerticesJob.cs │ │ │ │ │ ├── MergeTouchingBrushVerticesJob.cs.meta │ │ │ │ │ ├── PerformCSGJob.cs │ │ │ │ │ ├── PerformCSGJob.cs.meta │ │ │ │ │ ├── PrepareBrushPairIntersectionsJob.cs │ │ │ │ │ ├── PrepareBrushPairIntersectionsJob.cs.meta │ │ │ │ │ ├── StoreBrushIntersectionsJob.cs │ │ │ │ │ ├── StoreBrushIntersectionsJob.cs.meta │ │ │ │ │ ├── StoreToCacheJob.cs │ │ │ │ │ ├── StoreToCacheJob.cs.meta │ │ │ │ │ ├── UpdateBrushMeshIDsJob.cs │ │ │ │ │ ├── UpdateBrushMeshIDsJob.cs.meta │ │ │ │ │ ├── UpdateBrushOutlineJob.cs │ │ │ │ │ ├── UpdateBrushOutlineJob.cs.meta │ │ │ │ │ ├── UpdateTransformationsJob.cs │ │ │ │ │ └── UpdateTransformationsJob.cs.meta │ │ │ │ ├── Managers.meta │ │ │ │ ├── Managers │ │ │ │ │ ├── CSGManager.UpdateTreeMeshes.cs │ │ │ │ │ ├── CSGManager.UpdateTreeMeshes.cs.meta │ │ │ │ │ ├── CompactHierarchyManager.cs │ │ │ │ │ ├── CompactHierarchyManager.cs.meta │ │ │ │ │ ├── CompactTreeBuilder.cs │ │ │ │ │ ├── CompactTreeBuilder.cs.meta │ │ │ │ │ ├── Decomposition.cs │ │ │ │ │ └── Decomposition.cs.meta │ │ │ │ ├── Thirdparty.meta │ │ │ │ └── Thirdparty │ │ │ │ │ ├── BayazitDecomposer.cs │ │ │ │ │ ├── BayazitDecomposer.cs.meta │ │ │ │ │ ├── BayazitDecomposerBursted.cs │ │ │ │ │ ├── BayazitDecomposerBursted.cs.meta │ │ │ │ │ ├── ConvexHullCalculator.cs │ │ │ │ │ ├── ConvexHullCalculator.cs.meta │ │ │ │ │ ├── Poly2Tri.meta │ │ │ │ │ └── Poly2Tri │ │ │ │ │ ├── AUTHORS.txt │ │ │ │ │ ├── AUTHORS.txt.meta │ │ │ │ │ ├── DTSweep.cs │ │ │ │ │ ├── DTSweep.cs.meta │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ └── LICENSE.txt.meta │ │ │ ├── 3.Output.meta │ │ │ ├── 3.Output │ │ │ │ ├── Query.meta │ │ │ │ ├── Query │ │ │ │ │ ├── BrushIntersectionLookup.Internal.cs │ │ │ │ │ ├── BrushIntersectionLookup.Internal.cs.meta │ │ │ │ │ ├── CSGQueryManager.cs │ │ │ │ │ ├── CSGQueryManager.cs.meta │ │ │ │ │ ├── CSGTreeBrushIntersection.cs │ │ │ │ │ ├── CSGTreeBrushIntersection.cs.meta │ │ │ │ │ ├── ChiselSurfaceIntersection.cs │ │ │ │ │ ├── ChiselSurfaceIntersection.cs.meta │ │ │ │ │ ├── FinishMeshUpdateDelegate.cs │ │ │ │ │ ├── FinishMeshUpdateDelegate.cs.meta │ │ │ │ │ ├── GeneratedMeshContents.cs │ │ │ │ │ ├── GeneratedMeshContents.cs.meta │ │ │ │ │ ├── GeneratedMeshDescription.cs │ │ │ │ │ ├── GeneratedMeshDescription.cs.meta │ │ │ │ │ ├── MeshQuery.cs │ │ │ │ │ ├── MeshQuery.cs.meta │ │ │ │ │ ├── VertexBufferContents.cs │ │ │ │ │ ├── VertexBufferContents.cs.meta │ │ │ │ │ ├── VertexChannelFlags.cs │ │ │ │ │ └── VertexChannelFlags.cs.meta │ │ │ │ ├── Wireframe.meta │ │ │ │ └── Wireframe │ │ │ │ │ ├── BurstOutline.cs │ │ │ │ │ ├── BurstOutline.cs.meta │ │ │ │ │ ├── ChiselWireframe.Internal.cs │ │ │ │ │ ├── ChiselWireframe.Internal.cs.meta │ │ │ │ │ ├── ChiselWireframe.cs │ │ │ │ │ └── ChiselWireframe.cs.meta │ │ │ ├── ExtensionMethods.meta │ │ │ ├── ExtensionMethods │ │ │ │ ├── BlobArrayExtensions.cs │ │ │ │ ├── BlobArrayExtensions.cs.meta │ │ │ │ ├── BlobBuilderExtensions.cs │ │ │ │ ├── BlobBuilderExtensions.cs.meta │ │ │ │ ├── BoundsExtensions.cs │ │ │ │ ├── BoundsExtensions.cs.meta │ │ │ │ ├── ChiselNativeArrayExtensions.cs │ │ │ │ ├── ChiselNativeArrayExtensions.cs.meta │ │ │ │ ├── ChiselNativeListExtensions.cs │ │ │ │ ├── ChiselNativeListExtensions.cs.meta │ │ │ │ ├── HashExtensions.cs │ │ │ │ ├── HashExtensions.cs.meta │ │ │ │ ├── JobExtensions.cs │ │ │ │ ├── JobExtensions.cs.meta │ │ │ │ ├── JobHandleExtensions.cs │ │ │ │ ├── JobHandleExtensions.cs.meta │ │ │ │ ├── MathExtensions.cs │ │ │ │ ├── MathExtensions.cs.meta │ │ │ │ ├── NativeCollection.cs │ │ │ │ ├── NativeCollection.cs.meta │ │ │ │ ├── NativeCollectionHelpers.cs │ │ │ │ ├── NativeCollectionHelpers.cs.meta │ │ │ │ ├── NativeListExtensions.cs │ │ │ │ ├── NativeListExtensions.cs.meta │ │ │ │ ├── NativeStreamExtensions.cs │ │ │ │ ├── NativeStreamExtensions.cs.meta │ │ │ │ ├── PlaneExtensions.cs │ │ │ │ ├── PlaneExtensions.cs.meta │ │ │ │ ├── SystemHashSetExtensions.cs │ │ │ │ └── SystemHashSetExtensions.cs.meta │ │ │ ├── assembly.cs │ │ │ ├── assembly.cs.meta │ │ │ ├── com.chisel.core.asmdef │ │ │ └── com.chisel.core.asmdef.meta │ │ ├── Package Resources.meta │ │ └── Package Resources │ │ │ ├── CastShadows.mat │ │ │ ├── CastShadows.mat.meta │ │ │ ├── CastShadows.png │ │ │ ├── CastShadows.png.meta │ │ │ ├── Collider.mat │ │ │ ├── Collider.mat.meta │ │ │ ├── Collider.png │ │ │ ├── Collider.png.meta │ │ │ ├── Culled.mat │ │ │ ├── Culled.mat.meta │ │ │ ├── Culled.png │ │ │ ├── Culled.png.meta │ │ │ ├── DefaultPhysicMaterial.physicMaterial │ │ │ ├── DefaultPhysicMaterial.physicMaterial.meta │ │ │ ├── Discarded.mat │ │ │ ├── Discarded.mat.meta │ │ │ ├── Discarded.png │ │ │ ├── Discarded.png.meta │ │ │ ├── Floor.mat │ │ │ ├── Floor.mat.meta │ │ │ ├── Floor.png │ │ │ ├── Floor.png.meta │ │ │ ├── Invisible.mat │ │ │ ├── Invisible.mat.meta │ │ │ ├── Invisible.png │ │ │ ├── Invisible.png.meta │ │ │ ├── ReceiveShadows.mat │ │ │ ├── ReceiveShadows.mat.meta │ │ │ ├── ReceiveShadows.png │ │ │ ├── ReceiveShadows.png.meta │ │ │ ├── ShadowOnly.mat │ │ │ ├── ShadowOnly.mat.meta │ │ │ ├── ShadowOnly.png │ │ │ ├── ShadowOnly.png.meta │ │ │ ├── Step.mat │ │ │ ├── Step.mat.meta │ │ │ ├── Step.png │ │ │ ├── Step.png.meta │ │ │ ├── Tread.mat │ │ │ ├── Tread.mat.meta │ │ │ ├── Tread.png │ │ │ ├── Tread.png.meta │ │ │ ├── Trigger.mat │ │ │ ├── Trigger.mat.meta │ │ │ ├── Trigger.png │ │ │ ├── Trigger.png.meta │ │ │ ├── Wall.mat │ │ │ ├── Wall.mat.meta │ │ │ ├── Wall.png │ │ │ └── Wall.png.meta │ ├── LICENSE.md │ ├── LICENSE.md.meta │ ├── README.md │ ├── README.md.meta │ ├── package.json │ └── package.json.meta ├── com.chisel.unity.components │ ├── CHANGELOG.md │ ├── CHANGELOG.md.meta │ ├── Chisel.meta │ ├── Chisel │ │ ├── Components.meta │ │ └── Components │ │ │ ├── Components.meta │ │ │ ├── Components │ │ │ ├── Base.meta │ │ │ ├── Base │ │ │ │ ├── ChiselGeneratorComponent.cs │ │ │ │ ├── ChiselGeneratorComponent.cs.meta │ │ │ │ ├── ChiselNode.cs │ │ │ │ └── ChiselNode.cs.meta │ │ │ ├── Containers.meta │ │ │ ├── Containers │ │ │ │ ├── ChiselModelComponent.cs │ │ │ │ └── ChiselModelComponent.cs.meta │ │ │ ├── Generated.meta │ │ │ ├── Generated │ │ │ │ ├── ChiselColliderObjects.cs │ │ │ │ ├── ChiselColliderObjects.cs.meta │ │ │ │ ├── ChiselGeneratedObjects.cs │ │ │ │ ├── ChiselGeneratedObjects.cs.meta │ │ │ │ ├── ChiselRenderableObjects.cs │ │ │ │ └── ChiselRenderableObjects.cs.meta │ │ │ ├── Generators.meta │ │ │ ├── Generators │ │ │ │ ├── ChiselBoxComponent.cs │ │ │ │ ├── ChiselBoxComponent.cs.meta │ │ │ │ ├── ChiselBrushComponent.cs │ │ │ │ ├── ChiselBrushComponent.cs.meta │ │ │ │ ├── ChiselCapsuleComponent.cs │ │ │ │ ├── ChiselCapsuleComponent.cs.meta │ │ │ │ ├── ChiselCylinderComponent.cs │ │ │ │ ├── ChiselCylinderComponent.cs.meta │ │ │ │ ├── ChiselExtrudedShapeComponent.cs │ │ │ │ ├── ChiselExtrudedShapeComponent.cs.meta │ │ │ │ ├── ChiselHemisphereComponent.cs │ │ │ │ ├── ChiselHemisphereComponent.cs.meta │ │ │ │ ├── ChiselLinearStairsComponent.cs │ │ │ │ ├── ChiselLinearStairsComponent.cs.meta │ │ │ │ ├── ChiselPathedStairsComponent.cs │ │ │ │ ├── ChiselPathedStairsComponent.cs.meta │ │ │ │ ├── ChiselRevolvedShapeComponent.cs │ │ │ │ ├── ChiselRevolvedShapeComponent.cs.meta │ │ │ │ ├── ChiselSphereComponent.cs │ │ │ │ ├── ChiselSphereComponent.cs.meta │ │ │ │ ├── ChiselSpiralStairsComponent.cs │ │ │ │ ├── ChiselSpiralStairsComponent.cs.meta │ │ │ │ ├── ChiselStadiumComponent.cs │ │ │ │ ├── ChiselStadiumComponent.cs.meta │ │ │ │ ├── ChiselTorusComponent.cs │ │ │ │ └── ChiselTorusComponent.cs.meta │ │ │ ├── Modifiers.meta │ │ │ └── Modifiers │ │ │ │ ├── ChiselCompositeComponent.cs │ │ │ │ └── ChiselCompositeComponent.cs.meta │ │ │ ├── ExtensionMethods.meta │ │ │ ├── ExtensionMethods │ │ │ ├── SerializedObjectExtensions.cs │ │ │ ├── SerializedObjectExtensions.cs.meta │ │ │ ├── TransformExtensions.cs │ │ │ └── TransformExtensions.cs.meta │ │ │ ├── Managers.meta │ │ │ ├── Managers │ │ │ ├── ChiselGeneratedComponentManager.cs │ │ │ ├── ChiselGeneratedComponentManager.cs.meta │ │ │ ├── ChiselGeneratedModelMeshManager.cs │ │ │ ├── ChiselGeneratedModelMeshManager.cs.meta │ │ │ ├── ChiselHierarchyItem.cs │ │ │ ├── ChiselHierarchyItem.cs.meta │ │ │ ├── ChiselMeshQueryManager.cs │ │ │ ├── ChiselMeshQueryManager.cs.meta │ │ │ ├── ChiselModelManager.cs │ │ │ ├── ChiselModelManager.cs.meta │ │ │ ├── ChiselNodeHierarchyManager.cs │ │ │ └── ChiselNodeHierarchyManager.cs.meta │ │ │ ├── Query.meta │ │ │ ├── Query │ │ │ ├── ChiselBrushIntersection.cs │ │ │ ├── ChiselBrushIntersection.cs.meta │ │ │ ├── ChiselIntersection.cs │ │ │ ├── ChiselIntersection.cs.meta │ │ │ ├── ChiselSceneQuery.cs │ │ │ ├── ChiselSceneQuery.cs.meta │ │ │ ├── Frustum.cs │ │ │ ├── Frustum.cs.meta │ │ │ ├── SurfaceIntersection.cs │ │ │ ├── SurfaceIntersection.cs.meta │ │ │ ├── SurfaceReference.cs │ │ │ └── SurfaceReference.cs.meta │ │ │ ├── Utility.meta │ │ │ ├── Utility │ │ │ ├── ChiselBoundsUtility.cs │ │ │ ├── ChiselBoundsUtility.cs.meta │ │ │ ├── ChiselComponentFactory.cs │ │ │ ├── ChiselComponentFactory.cs.meta │ │ │ ├── ChiselObjectUtility.cs │ │ │ └── ChiselObjectUtility.cs.meta │ │ │ ├── com.chisel.components.asmdef │ │ │ └── com.chisel.components.asmdef.meta │ ├── LICENSE.md │ ├── LICENSE.md.meta │ ├── README.md │ ├── README.md.meta │ ├── package.json │ └── package.json.meta ├── com.chisel.unity.editor │ ├── CHANGELOG.md │ ├── CHANGELOG.md.meta │ ├── Chisel.meta │ ├── Chisel │ │ ├── Editor.meta │ │ └── Editor │ │ │ ├── ChiselUnityEventsManager.cs │ │ │ ├── ChiselUnityEventsManager.cs.meta │ │ │ ├── ComponentEditors.meta │ │ │ ├── ComponentEditors │ │ │ ├── Base.meta │ │ │ ├── Base │ │ │ │ ├── ChiselEditableOutline.cs │ │ │ │ ├── ChiselEditableOutline.cs.meta │ │ │ │ ├── ChiselFallbackNodeEditor.cs │ │ │ │ ├── ChiselFallbackNodeEditor.cs.meta │ │ │ │ ├── ChiselNodeDetails.cs │ │ │ │ ├── ChiselNodeDetails.cs.meta │ │ │ │ ├── ChiselNodeDetailsManager.cs │ │ │ │ ├── ChiselNodeDetailsManager.cs.meta │ │ │ │ ├── ChiselNodeEditor.cs │ │ │ │ ├── ChiselNodeEditor.cs.meta │ │ │ │ ├── ChiselTopologySelection.cs │ │ │ │ └── ChiselTopologySelection.cs.meta │ │ │ ├── Containers.meta │ │ │ ├── Containers │ │ │ │ ├── ChiselModelEditor.cs │ │ │ │ └── ChiselModelEditor.cs.meta │ │ │ ├── Generators.meta │ │ │ ├── Generators │ │ │ │ ├── ChiselBoxEditor.cs │ │ │ │ ├── ChiselBoxEditor.cs.meta │ │ │ │ ├── ChiselBrushEditor.cs │ │ │ │ ├── ChiselBrushEditor.cs.meta │ │ │ │ ├── ChiselCapsuleEditor.cs │ │ │ │ ├── ChiselCapsuleEditor.cs.meta │ │ │ │ ├── ChiselCylinderEditor.cs │ │ │ │ ├── ChiselCylinderEditor.cs.meta │ │ │ │ ├── ChiselExtrudedShapeEditor.cs │ │ │ │ ├── ChiselExtrudedShapeEditor.cs.meta │ │ │ │ ├── ChiselHemisphereEditor.cs │ │ │ │ ├── ChiselHemisphereEditor.cs.meta │ │ │ │ ├── ChiselLinearStairsEditor.cs │ │ │ │ ├── ChiselLinearStairsEditor.cs.meta │ │ │ │ ├── ChiselPathedStairsEditor.cs │ │ │ │ ├── ChiselPathedStairsEditor.cs.meta │ │ │ │ ├── ChiselRevolvedShapeEditor.cs │ │ │ │ ├── ChiselRevolvedShapeEditor.cs.meta │ │ │ │ ├── ChiselSphereEditor.cs │ │ │ │ ├── ChiselSphereEditor.cs.meta │ │ │ │ ├── ChiselSpiralStairsEditor.cs │ │ │ │ ├── ChiselSpiralStairsEditor.cs.meta │ │ │ │ ├── ChiselStadiumEditor.cs │ │ │ │ ├── ChiselStadiumEditor.cs.meta │ │ │ │ ├── ChiselTorusEditor.cs │ │ │ │ └── ChiselTorusEditor.cs.meta │ │ │ ├── Modifiers.meta │ │ │ └── Modifiers │ │ │ │ ├── ChiselCompositeEditor.cs │ │ │ │ └── ChiselCompositeEditor.cs.meta │ │ │ ├── DebugHelpers.meta │ │ │ ├── DebugHelpers │ │ │ ├── ChiselInternalHierarchyView.cs │ │ │ ├── ChiselInternalHierarchyView.cs.meta │ │ │ ├── ChiselManagedHierarchyView.cs │ │ │ ├── ChiselManagedHierarchyView.cs.meta │ │ │ ├── HistoryView.cs │ │ │ ├── HistoryView.cs.meta │ │ │ ├── SceneObjectsWindow.cs │ │ │ └── SceneObjectsWindow.cs.meta │ │ │ ├── DragAndDrop.meta │ │ │ ├── DragAndDrop │ │ │ ├── ChiselDragAndDropManager.cs │ │ │ ├── ChiselDragAndDropManager.cs.meta │ │ │ ├── ChiselDragAndDropMaterial.cs │ │ │ ├── ChiselDragAndDropMaterial.cs.meta │ │ │ ├── IChiselDragAndDropOperation.cs │ │ │ └── IChiselDragAndDropOperation.cs.meta │ │ │ ├── EditorTools.meta │ │ │ ├── EditorTools │ │ │ ├── ChiselEditGeneratorTool.cs │ │ │ ├── ChiselEditGeneratorTool.cs.meta │ │ │ ├── ChiselEditToolBase.cs │ │ │ ├── ChiselEditToolBase.cs.meta │ │ │ ├── ChiselMovePivotTool.cs │ │ │ ├── ChiselMovePivotTool.cs.meta │ │ │ ├── ChiselPlacementTool.cs │ │ │ ├── ChiselPlacementTool.cs.meta │ │ │ ├── ChiselUVMoveTool.cs │ │ │ ├── ChiselUVMoveTool.cs.meta │ │ │ ├── ChiselUVRotateTool.cs │ │ │ ├── ChiselUVRotateTool.cs.meta │ │ │ ├── ChiselUVScaleTool.cs │ │ │ ├── ChiselUVScaleTool.cs.meta │ │ │ ├── ChiselUVToolCommon.cs │ │ │ ├── ChiselUVToolCommon.cs.meta │ │ │ ├── IChiselToolNode.cs │ │ │ └── IChiselToolNode.cs.meta │ │ │ ├── ExtensionMethods.meta │ │ │ ├── ExtensionMethods │ │ │ ├── CachedEditorUtility.cs │ │ │ ├── CachedEditorUtility.cs.meta │ │ │ ├── ChiselCompositeGUI.cs │ │ │ ├── ChiselCompositeGUI.cs.meta │ │ │ ├── ChiselEditorResources.cs │ │ │ ├── ChiselEditorResources.cs.meta │ │ │ ├── ChiselEditorUtility.cs │ │ │ ├── ChiselEditorUtility.cs.meta │ │ │ ├── FunctioningMaskField.cs │ │ │ ├── FunctioningMaskField.cs.meta │ │ │ ├── Plane.Extension.cs │ │ │ ├── Plane.Extension.cs.meta │ │ │ ├── PreviewTextureManager.cs │ │ │ ├── PreviewTextureManager.cs.meta │ │ │ ├── ReflectionExtensions.cs │ │ │ └── ReflectionExtensions.cs.meta │ │ │ ├── Hierarchy.meta │ │ │ ├── Hierarchy │ │ │ ├── ChiselHierarchyWindowManager.cs │ │ │ └── ChiselHierarchyWindowManager.cs.meta │ │ │ ├── Keyboard.meta │ │ │ ├── Keyboard │ │ │ ├── ChiselKeyboardDefaults.cs │ │ │ └── ChiselKeyboardDefaults.cs.meta │ │ │ ├── PropertyDrawers.meta │ │ │ ├── PropertyDrawers │ │ │ ├── AngleValueDrawer.cs │ │ │ ├── AngleValueDrawer.cs.meta │ │ │ ├── ChiselMaterialPropertyDrawer.cs │ │ │ ├── ChiselMaterialPropertyDrawer.cs.meta │ │ │ ├── ChiselSurfaceDefinitionPropertyDrawer.cs │ │ │ ├── ChiselSurfaceDefinitionPropertyDrawer.cs.meta │ │ │ ├── ConditionalAttributeDrawer.cs │ │ │ ├── ConditionalAttributeDrawer.cs.meta │ │ │ ├── DistanceValueDrawer.cs │ │ │ ├── DistanceValueDrawer.cs.meta │ │ │ ├── EulerValueDrawer.cs │ │ │ ├── EulerValueDrawer.cs.meta │ │ │ ├── HideFoldoutPropertyDrawer.cs │ │ │ ├── HideFoldoutPropertyDrawer.cs.meta │ │ │ ├── NamedItemsPropertyDrawer.cs │ │ │ ├── NamedItemsPropertyDrawer.cs.meta │ │ │ ├── PositionValueDrawer.cs │ │ │ ├── PositionValueDrawer.cs.meta │ │ │ ├── ScaleValueDrawer.cs │ │ │ ├── ScaleValueDrawer.cs.meta │ │ │ ├── SmoothingGroupPropertyDrawer.cs │ │ │ ├── SmoothingGroupPropertyDrawer.cs.meta │ │ │ ├── SurfaceDestinationFlagsPropertyDrawer.cs │ │ │ ├── SurfaceDestinationFlagsPropertyDrawer.cs.meta │ │ │ ├── SurfaceDetailsPropertyDrawer.cs │ │ │ ├── SurfaceDetailsPropertyDrawer.cs.meta │ │ │ ├── SurfaceFlagsPropertyDrawer.cs │ │ │ ├── SurfaceFlagsPropertyDrawer.cs.meta │ │ │ ├── ToggleFlagsPropertyDrawer.cs │ │ │ ├── ToggleFlagsPropertyDrawer.cs.meta │ │ │ ├── UVMatrixPropertyDrawer.cs │ │ │ └── UVMatrixPropertyDrawer.cs.meta │ │ │ ├── SceneView.meta │ │ │ ├── SceneView │ │ │ ├── ChiselDefaultPlacementTools.cs │ │ │ ├── ChiselDefaultPlacementTools.cs.meta │ │ │ ├── ChiselDrawModes.cs │ │ │ ├── ChiselDrawModes.cs.meta │ │ │ ├── ChiselEditorHandles.cs │ │ │ ├── ChiselEditorHandles.cs.meta │ │ │ ├── ChiselGeneratorManager.cs │ │ │ ├── ChiselGeneratorManager.cs.meta │ │ │ ├── ChiselPlacementToolInstance.cs │ │ │ ├── ChiselPlacementToolInstance.cs.meta │ │ │ ├── ChiselPlacementToolsSelectionWindow.cs │ │ │ ├── ChiselPlacementToolsSelectionWindow.cs.meta │ │ │ ├── ChiselSceneGUIStyle.cs │ │ │ ├── ChiselSceneGUIStyle.cs.meta │ │ │ ├── Handles.meta │ │ │ ├── Handles │ │ │ │ ├── ExtrusionHandle.cs │ │ │ │ ├── ExtrusionHandle.cs.meta │ │ │ │ ├── PointDrawing.cs │ │ │ │ ├── PointDrawing.cs.meta │ │ │ │ ├── RectangleExtrusionHandle.cs │ │ │ │ ├── RectangleExtrusionHandle.cs.meta │ │ │ │ ├── RotatableLineHandle.cs │ │ │ │ ├── RotatableLineHandle.cs.meta │ │ │ │ ├── ShapeExtrusionHandle.cs │ │ │ │ ├── ShapeExtrusionHandle.cs.meta │ │ │ │ ├── TurnHandle.cs │ │ │ │ └── TurnHandle.cs.meta │ │ │ ├── Measurements.meta │ │ │ ├── Measurements │ │ │ │ ├── Measurements.cs │ │ │ │ └── Measurements.cs.meta │ │ │ ├── Overlays.meta │ │ │ ├── Overlays │ │ │ │ ├── ChiselGeneratorSelectionOverlay.cs │ │ │ │ ├── ChiselGeneratorSelectionOverlay.cs.meta │ │ │ │ ├── ChiselGlobal.cs │ │ │ │ ├── ChiselGlobal.cs.meta │ │ │ │ ├── ChiselPlacementOptionsOverlay.cs │ │ │ │ ├── ChiselPlacementOptionsOverlay.cs.meta │ │ │ │ ├── ChiselSelectionManager.cs │ │ │ │ ├── ChiselSelectionManager.cs.meta │ │ │ │ ├── ChiselSnappingOptionsOverlay.cs │ │ │ │ ├── ChiselSnappingOptionsOverlay.cs.meta │ │ │ │ ├── ChiselSnappingOptionsToolbar.cs │ │ │ │ ├── ChiselSnappingOptionsToolbar.cs.meta │ │ │ │ ├── ChiselSnappingToggleUtility.cs │ │ │ │ ├── ChiselSnappingToggleUtility.cs.meta │ │ │ │ ├── ChiselSurfaceOverlay.cs │ │ │ │ ├── ChiselSurfaceOverlay.cs.meta │ │ │ │ ├── ChiselToolbarUtility.cs │ │ │ │ ├── ChiselToolbarUtility.cs.meta │ │ │ │ ├── PIvotUtility.cs │ │ │ │ └── PIvotUtility.cs.meta │ │ │ ├── SceneHandles.meta │ │ │ ├── SceneHandles │ │ │ │ ├── SceneHandleUtility.cs │ │ │ │ ├── SceneHandleUtility.cs.meta │ │ │ │ ├── SceneHandles.Bounds.cs │ │ │ │ ├── SceneHandles.Bounds.cs.meta │ │ │ │ ├── SceneHandles.Caps.cs │ │ │ │ ├── SceneHandles.Caps.cs.meta │ │ │ │ ├── SceneHandles.Color.cs │ │ │ │ ├── SceneHandles.Color.cs.meta │ │ │ │ ├── SceneHandles.Curve2D.cs │ │ │ │ ├── SceneHandles.Curve2D.cs.meta │ │ │ │ ├── SceneHandles.Edge1D.cs │ │ │ │ ├── SceneHandles.Edge1D.cs.meta │ │ │ │ ├── SceneHandles.Edge2D.cs │ │ │ │ ├── SceneHandles.Edge2D.cs.meta │ │ │ │ ├── SceneHandles.Planar.cs │ │ │ │ ├── SceneHandles.Planar.cs.meta │ │ │ │ ├── SceneHandles.Position.cs │ │ │ │ ├── SceneHandles.Position.cs.meta │ │ │ │ ├── SceneHandles.Radius.cs │ │ │ │ ├── SceneHandles.Radius.cs.meta │ │ │ │ ├── SceneHandles.Radius2D.cs │ │ │ │ ├── SceneHandles.Radius2D.cs.meta │ │ │ │ ├── SceneHandles.Radius3D.cs │ │ │ │ ├── SceneHandles.Radius3D.cs.meta │ │ │ │ ├── SceneHandles.Rect.cs │ │ │ │ ├── SceneHandles.Rect.cs.meta │ │ │ │ ├── SceneHandles.Slider1D.cs │ │ │ │ ├── SceneHandles.Slider1D.cs.meta │ │ │ │ ├── SceneHandles.Slider2D.cs │ │ │ │ ├── SceneHandles.Slider2D.cs.meta │ │ │ │ ├── SceneHandles.cs │ │ │ │ └── SceneHandles.cs.meta │ │ │ ├── Selection.meta │ │ │ ├── Selection │ │ │ │ ├── ChiselCameraUtility.cs │ │ │ │ ├── ChiselCameraUtility.cs.meta │ │ │ │ ├── ChiselClickSelectionManager.cs │ │ │ │ ├── ChiselClickSelectionManager.cs.meta │ │ │ │ ├── ChiselRectSelectionManager.cs │ │ │ │ ├── ChiselRectSelectionManager.cs.meta │ │ │ │ ├── ChiselSurfaceSelectionManager.cs │ │ │ │ ├── ChiselSurfaceSelectionManager.cs.meta │ │ │ │ ├── ChiselSyncSelection.cs │ │ │ │ └── ChiselSyncSelection.cs.meta │ │ │ ├── Snapping.meta │ │ │ ├── Snapping │ │ │ │ ├── SceneHandles.Extents1D.cs │ │ │ │ ├── SceneHandles.Extents1D.cs.meta │ │ │ │ ├── SceneHandles.Extents3D.cs │ │ │ │ ├── SceneHandles.Extents3D.cs.meta │ │ │ │ ├── SceneHandles.Grid.cs │ │ │ │ ├── SceneHandles.Grid.cs.meta │ │ │ │ ├── SceneHandles.GridRenderer.cs │ │ │ │ ├── SceneHandles.GridRenderer.cs.meta │ │ │ │ ├── SceneHandles.Snapping.cs │ │ │ │ ├── SceneHandles.Snapping.cs.meta │ │ │ │ ├── SceneHandles.SnappingUtility.cs │ │ │ │ ├── SceneHandles.SnappingUtility.cs.meta │ │ │ │ ├── SnappingKeyboard.cs │ │ │ │ └── SnappingKeyboard.cs.meta │ │ │ ├── Units.meta │ │ │ ├── Units │ │ │ │ ├── Units.cs │ │ │ │ └── Units.cs.meta │ │ │ ├── Utilities.meta │ │ │ ├── Utilities │ │ │ │ ├── ChiselGUIUtility.cs │ │ │ │ ├── ChiselGUIUtility.cs.meta │ │ │ │ ├── SceneHandles.CameraUtility.cs │ │ │ │ ├── SceneHandles.CameraUtility.cs.meta │ │ │ │ ├── SceneHandles.ColorUtility.cs │ │ │ │ ├── SceneHandles.ColorUtility.cs.meta │ │ │ │ ├── SceneHandles.GameObjectExtensions.cs │ │ │ │ ├── SceneHandles.GameObjectExtensions.cs.meta │ │ │ │ ├── SceneHandles.GeometryUtility.cs │ │ │ │ ├── SceneHandles.GeometryUtility.cs.meta │ │ │ │ ├── SceneHandles.RectUtility.cs │ │ │ │ ├── SceneHandles.RectUtility.cs.meta │ │ │ │ ├── SceneHandles.Rendering.cs │ │ │ │ ├── SceneHandles.Rendering.cs.meta │ │ │ │ ├── SceneHandles.SelectionUtility.cs │ │ │ │ ├── SceneHandles.SelectionUtility.cs.meta │ │ │ │ ├── SingletonManager.cs │ │ │ │ └── SingletonManager.cs.meta │ │ │ ├── Visualization.meta │ │ │ └── Visualization │ │ │ │ ├── ChiselOutlineRenderer.cs │ │ │ │ ├── ChiselOutlineRenderer.cs.meta │ │ │ │ ├── ChiselRenderer.cs │ │ │ │ ├── ChiselRenderer.cs.meta │ │ │ │ ├── ColorManager.cs │ │ │ │ ├── ColorManager.cs.meta │ │ │ │ ├── LineMeshRenderer.cs │ │ │ │ ├── LineMeshRenderer.cs.meta │ │ │ │ ├── MaterialManager.cs │ │ │ │ ├── MaterialManager.cs.meta │ │ │ │ ├── PointMeshRenderer.cs │ │ │ │ ├── PointMeshRenderer.cs.meta │ │ │ │ ├── PolygonMeshRenderer.cs │ │ │ │ ├── PolygonMeshRenderer.cs.meta │ │ │ │ ├── SceneLabels.cs │ │ │ │ └── SceneLabels.cs.meta │ │ │ ├── Settings.meta │ │ │ ├── Settings │ │ │ ├── ChiselEditorSettings.cs │ │ │ ├── ChiselEditorSettings.cs.meta │ │ │ ├── ChiselGridSettings.cs │ │ │ └── ChiselGridSettings.cs.meta │ │ │ ├── SurfaceEditors.meta │ │ │ ├── SurfaceEditors │ │ │ ├── ChiselSurfaceMetadataEditor.cs │ │ │ └── ChiselSurfaceMetadataEditor.cs.meta │ │ │ ├── com.chisel.editor.asmdef │ │ │ └── com.chisel.editor.asmdef.meta │ ├── Editor Resources.meta │ ├── Editor Resources │ │ ├── Icons.meta │ │ ├── Icons │ │ │ ├── AutoHeight On.png │ │ │ ├── AutoHeight On.png.meta │ │ │ ├── AutoHeight.png │ │ │ ├── AutoHeight.png.meta │ │ │ ├── BoundsSnap ON.png │ │ │ ├── BoundsSnap ON.png.meta │ │ │ ├── BoundsSnap.png │ │ │ ├── BoundsSnap.png.meta │ │ │ ├── DragToHeight On.png │ │ │ ├── DragToHeight On.png.meta │ │ │ ├── DragToHeight.png │ │ │ ├── DragToHeight.png.meta │ │ │ ├── EdgeSnap ON.png │ │ │ ├── EdgeSnap ON.png.meta │ │ │ ├── EdgeSnap.png │ │ │ ├── EdgeSnap.png.meta │ │ │ ├── Pivot.png │ │ │ ├── Pivot.png.meta │ │ │ ├── PivotSnap ON.png │ │ │ ├── PivotSnap ON.png.meta │ │ │ ├── PivotSnap.png │ │ │ ├── PivotSnap.png.meta │ │ │ ├── RectangularBase On.png │ │ │ ├── RectangularBase On.png.meta │ │ │ ├── RectangularBase.png │ │ │ ├── RectangularBase.png.meta │ │ │ ├── SizeBaseFromCenter On.png │ │ │ ├── SizeBaseFromCenter On.png.meta │ │ │ ├── SizeBaseFromCenter.png │ │ │ ├── SizeBaseFromCenter.png.meta │ │ │ ├── SizeBaseFromCorner On.png │ │ │ ├── SizeBaseFromCorner On.png.meta │ │ │ ├── SizeBaseFromCorner.png │ │ │ ├── SizeBaseFromCorner.png.meta │ │ │ ├── SizeFromBottom On.png │ │ │ ├── SizeFromBottom On.png.meta │ │ │ ├── SizeFromBottom.png │ │ │ ├── SizeFromBottom.png.meta │ │ │ ├── SizeFromCenter On.png │ │ │ ├── SizeFromCenter On.png.meta │ │ │ ├── SizeFromCenter.png │ │ │ ├── SizeFromCenter.png.meta │ │ │ ├── SquareBase On.png │ │ │ ├── SquareBase On.png.meta │ │ │ ├── SquareBase.png │ │ │ ├── SquareBase.png.meta │ │ │ ├── SurfaceSnap ON.png │ │ │ ├── SurfaceSnap ON.png.meta │ │ │ ├── SurfaceSnap.png │ │ │ ├── SurfaceSnap.png.meta │ │ │ ├── UVEdgeSnap ON.png │ │ │ ├── UVEdgeSnap ON.png.meta │ │ │ ├── UVEdgeSnap.png │ │ │ ├── UVEdgeSnap.png.meta │ │ │ ├── UVGridSnap ON.png │ │ │ ├── UVGridSnap ON.png.meta │ │ │ ├── UVGridSnap.png │ │ │ ├── UVGridSnap.png.meta │ │ │ ├── UVVertexSnap ON.png │ │ │ ├── UVVertexSnap ON.png.meta │ │ │ ├── UVVertexSnap.png │ │ │ ├── UVVertexSnap.png.meta │ │ │ ├── VertexSnap ON.png │ │ │ ├── VertexSnap ON.png.meta │ │ │ ├── VertexSnap.png │ │ │ ├── VertexSnap.png.meta │ │ │ ├── add.png │ │ │ ├── add.png.meta │ │ │ ├── box.png │ │ │ ├── box.png.meta │ │ │ ├── boxOutline.png │ │ │ ├── boxOutline.png.meta │ │ │ ├── boxSurfaces.png │ │ │ ├── boxSurfaces.png.meta │ │ │ ├── capsule.png │ │ │ ├── capsule.png.meta │ │ │ ├── centerPivotOnEach ON.png │ │ │ ├── centerPivotOnEach ON.png.meta │ │ │ ├── centerPivotOnEach.png │ │ │ ├── centerPivotOnEach.png.meta │ │ │ ├── centerPivotOnSelectionCenter ON.png │ │ │ ├── centerPivotOnSelectionCenter ON.png.meta │ │ │ ├── centerPivotOnSelectionCenter.png │ │ │ ├── centerPivotOnSelectionCenter.png.meta │ │ │ ├── convertToBrush.png │ │ │ ├── convertToBrush.png.meta │ │ │ ├── csg_additive On.png │ │ │ ├── csg_additive On.png.meta │ │ │ ├── csg_additive On@2x.png │ │ │ ├── csg_additive On@2x.png.meta │ │ │ ├── csg_additive.png │ │ │ ├── csg_additive.png.meta │ │ │ ├── csg_additive@2x.png │ │ │ ├── csg_additive@2x.png.meta │ │ │ ├── csg_copy On.png │ │ │ ├── csg_copy On.png.meta │ │ │ ├── csg_copy On@2x.png │ │ │ ├── csg_copy On@2x.png.meta │ │ │ ├── csg_copy.png │ │ │ ├── csg_copy.png.meta │ │ │ ├── csg_intersecting On.png │ │ │ ├── csg_intersecting On.png.meta │ │ │ ├── csg_intersecting On@2x.png │ │ │ ├── csg_intersecting On@2x.png.meta │ │ │ ├── csg_intersecting.png │ │ │ ├── csg_intersecting.png.meta │ │ │ ├── csg_intersecting@2x.png │ │ │ ├── csg_intersecting@2x.png.meta │ │ │ ├── csg_model.png │ │ │ ├── csg_model.png.meta │ │ │ ├── csg_model@2x.png │ │ │ ├── csg_model@2x.png.meta │ │ │ ├── csg_subtractive On.png │ │ │ ├── csg_subtractive On.png.meta │ │ │ ├── csg_subtractive On@2x.png │ │ │ ├── csg_subtractive On@2x.png.meta │ │ │ ├── csg_subtractive.png │ │ │ ├── csg_subtractive.png.meta │ │ │ ├── csg_subtractive@2x.png │ │ │ ├── csg_subtractive@2x.png.meta │ │ │ ├── cylinder.png │ │ │ ├── cylinder.png.meta │ │ │ ├── d_AutoHeight On.png │ │ │ ├── d_AutoHeight On.png.meta │ │ │ ├── d_AutoHeight.png │ │ │ ├── d_AutoHeight.png.meta │ │ │ ├── d_BoundsSnap ON.png │ │ │ ├── d_BoundsSnap ON.png.meta │ │ │ ├── d_BoundsSnap.png │ │ │ ├── d_BoundsSnap.png.meta │ │ │ ├── d_DragToHeight On.png │ │ │ ├── d_DragToHeight On.png.meta │ │ │ ├── d_DragToHeight.png │ │ │ ├── d_DragToHeight.png.meta │ │ │ ├── d_EdgeSnap.png │ │ │ ├── d_EdgeSnap.png.meta │ │ │ ├── d_PivotSnap ON.png │ │ │ ├── d_PivotSnap ON.png.meta │ │ │ ├── d_PivotSnap.png │ │ │ ├── d_PivotSnap.png.meta │ │ │ ├── d_RectangularBase On.png │ │ │ ├── d_RectangularBase On.png.meta │ │ │ ├── d_RectangularBase.png │ │ │ ├── d_RectangularBase.png.meta │ │ │ ├── d_SizeBaseFromCenter On.png │ │ │ ├── d_SizeBaseFromCenter On.png.meta │ │ │ ├── d_SizeBaseFromCenter.png │ │ │ ├── d_SizeBaseFromCenter.png.meta │ │ │ ├── d_SizeBaseFromCorner On.png │ │ │ ├── d_SizeBaseFromCorner On.png.meta │ │ │ ├── d_SizeBaseFromCorner.png │ │ │ ├── d_SizeBaseFromCorner.png.meta │ │ │ ├── d_SizeFromBottom On.png │ │ │ ├── d_SizeFromBottom On.png.meta │ │ │ ├── d_SizeFromBottom.png │ │ │ ├── d_SizeFromBottom.png.meta │ │ │ ├── d_SizeFromCenter On.png │ │ │ ├── d_SizeFromCenter On.png.meta │ │ │ ├── d_SizeFromCenter.png │ │ │ ├── d_SizeFromCenter.png.meta │ │ │ ├── d_SquareBase On.png │ │ │ ├── d_SquareBase On.png.meta │ │ │ ├── d_SquareBase.png │ │ │ ├── d_SquareBase.png.meta │ │ │ ├── d_SurfaceSnap.png │ │ │ ├── d_SurfaceSnap.png.meta │ │ │ ├── d_UVEdgeSnap.png │ │ │ ├── d_UVEdgeSnap.png.meta │ │ │ ├── d_UVGridSnap.png │ │ │ ├── d_UVGridSnap.png.meta │ │ │ ├── d_UVVertexSnap.png │ │ │ ├── d_UVVertexSnap.png.meta │ │ │ ├── d_VertexSnap.png │ │ │ ├── d_VertexSnap.png.meta │ │ │ ├── d_add.png │ │ │ ├── d_add.png.meta │ │ │ ├── d_boxSurfaces.png │ │ │ ├── d_boxSurfaces.png.meta │ │ │ ├── d_centerPivotOnEach ON.png │ │ │ ├── d_centerPivotOnEach ON.png.meta │ │ │ ├── d_centerPivotOnEach.png │ │ │ ├── d_centerPivotOnEach.png.meta │ │ │ ├── d_centerPivotOnSelectionCenter ON.png │ │ │ ├── d_centerPivotOnSelectionCenter ON.png.meta │ │ │ ├── d_centerPivotOnSelectionCenter.png │ │ │ ├── d_centerPivotOnSelectionCenter.png.meta │ │ │ ├── d_convertToBrush.png │ │ │ ├── d_convertToBrush.png.meta │ │ │ ├── d_csg_additive On.png │ │ │ ├── d_csg_additive On.png.meta │ │ │ ├── d_csg_additive On@2x.png │ │ │ ├── d_csg_additive On@2x.png.meta │ │ │ ├── d_csg_additive.png │ │ │ ├── d_csg_additive.png.meta │ │ │ ├── d_csg_additive@2x.png │ │ │ ├── d_csg_additive@2x.png.meta │ │ │ ├── d_csg_copy On.png │ │ │ ├── d_csg_copy On.png.meta │ │ │ ├── d_csg_copy On@2x.png │ │ │ ├── d_csg_copy On@2x.png.meta │ │ │ ├── d_csg_copy.png │ │ │ ├── d_csg_copy.png.meta │ │ │ ├── d_csg_copy@2x.png │ │ │ ├── d_csg_copy@2x.png.meta │ │ │ ├── d_csg_intersecting On.png │ │ │ ├── d_csg_intersecting On.png.meta │ │ │ ├── d_csg_intersecting On@2x.png │ │ │ ├── d_csg_intersecting On@2x.png.meta │ │ │ ├── d_csg_intersecting.png │ │ │ ├── d_csg_intersecting.png.meta │ │ │ ├── d_csg_intersecting@2x.png │ │ │ ├── d_csg_intersecting@2x.png.meta │ │ │ ├── d_csg_model.png │ │ │ ├── d_csg_model.png.meta │ │ │ ├── d_csg_model@2x.png │ │ │ ├── d_csg_model@2x.png.meta │ │ │ ├── d_csg_subtractive On.png │ │ │ ├── d_csg_subtractive On.png.meta │ │ │ ├── d_csg_subtractive On@2x.png │ │ │ ├── d_csg_subtractive On@2x.png.meta │ │ │ ├── d_csg_subtractive.png │ │ │ ├── d_csg_subtractive.png.meta │ │ │ ├── d_csg_subtractive@2x.png │ │ │ ├── d_csg_subtractive@2x.png.meta │ │ │ ├── d_edgeSnap On.png │ │ │ ├── d_edgeSnap On.png.meta │ │ │ ├── d_grid On.png │ │ │ ├── d_grid On.png.meta │ │ │ ├── d_grid.png │ │ │ ├── d_grid.png.meta │ │ │ ├── d_moveTool ON.png │ │ │ ├── d_moveTool ON.png.meta │ │ │ ├── d_moveTool.png │ │ │ ├── d_moveTool.png.meta │ │ │ ├── d_ol_minus On.png │ │ │ ├── d_ol_minus On.png.meta │ │ │ ├── d_ol_minus.png │ │ │ ├── d_ol_minus.png.meta │ │ │ ├── d_ol_plus On.png │ │ │ ├── d_ol_plus On.png.meta │ │ │ ├── d_ol_plus.png │ │ │ ├── d_ol_plus.png.meta │ │ │ ├── d_pass_through On.png │ │ │ ├── d_pass_through On.png.meta │ │ │ ├── d_pass_through.png │ │ │ ├── d_pass_through.png.meta │ │ │ ├── d_pivot ON.png │ │ │ ├── d_pivot ON.png.meta │ │ │ ├── d_pivot.png │ │ │ ├── d_pivot.png.meta │ │ │ ├── d_rebuild ON.png │ │ │ ├── d_rebuild ON.png.meta │ │ │ ├── d_rebuild.png │ │ │ ├── d_rebuild.png.meta │ │ │ ├── d_remove_behind On.png │ │ │ ├── d_remove_behind On.png.meta │ │ │ ├── d_remove_behind.png │ │ │ ├── d_remove_behind.png.meta │ │ │ ├── d_remove_front On.png │ │ │ ├── d_remove_front On.png.meta │ │ │ ├── d_remove_front.png │ │ │ ├── d_remove_front.png.meta │ │ │ ├── d_rotateTool ON.png │ │ │ ├── d_rotateTool ON.png.meta │ │ │ ├── d_rotateTool.png │ │ │ ├── d_rotateTool.png.meta │ │ │ ├── d_scaleTool ON.png │ │ │ ├── d_scaleTool ON.png.meta │ │ │ ├── d_scaleTool.png │ │ │ ├── d_scaleTool.png.meta │ │ │ ├── d_shape edit ON.png │ │ │ ├── d_shape edit ON.png.meta │ │ │ ├── d_shape edit.png │ │ │ ├── d_shape edit.png.meta │ │ │ ├── d_snapping On.png │ │ │ ├── d_snapping On.png.meta │ │ │ ├── d_snapping.png │ │ │ ├── d_snapping.png.meta │ │ │ ├── d_split On.png │ │ │ ├── d_split On.png.meta │ │ │ ├── d_split.png │ │ │ ├── d_split.png.meta │ │ │ ├── d_surface rotate ON.png │ │ │ ├── d_surface rotate ON.png.meta │ │ │ ├── d_surface rotate.png │ │ │ ├── d_surface rotate.png.meta │ │ │ ├── d_surface scale ON.png │ │ │ ├── d_surface scale ON.png.meta │ │ │ ├── d_surface scale.png │ │ │ ├── d_surface scale.png.meta │ │ │ ├── d_surface translate ON.png │ │ │ ├── d_surface translate ON.png.meta │ │ │ ├── d_surface translate.png │ │ │ ├── d_surface translate.png.meta │ │ │ ├── d_surfaceSnap On.png │ │ │ ├── d_surfaceSnap On.png.meta │ │ │ ├── d_vertexSnap On.png │ │ │ ├── d_vertexSnap On.png.meta │ │ │ ├── d_wireframe On.png │ │ │ ├── d_wireframe On.png.meta │ │ │ ├── d_wireframe.png │ │ │ ├── d_wireframe.png.meta │ │ │ ├── free_draw.png │ │ │ ├── free_draw.png.meta │ │ │ ├── grid On.png │ │ │ ├── grid On.png.meta │ │ │ ├── grid.png │ │ │ ├── grid.png.meta │ │ │ ├── hemisphere.png │ │ │ ├── hemisphere.png.meta │ │ │ ├── linear_stairs.png │ │ │ ├── linear_stairs.png.meta │ │ │ ├── moveTool On.png │ │ │ ├── moveTool On.png.meta │ │ │ ├── moveTool.png │ │ │ ├── moveTool.png.meta │ │ │ ├── ol_minus On.png │ │ │ ├── ol_minus On.png.meta │ │ │ ├── ol_minus.png │ │ │ ├── ol_minus.png.meta │ │ │ ├── ol_plus On.png │ │ │ ├── ol_plus On.png.meta │ │ │ ├── ol_plus.png │ │ │ ├── ol_plus.png.meta │ │ │ ├── pass_through On.png │ │ │ ├── pass_through On.png.meta │ │ │ ├── pass_through.png │ │ │ ├── pass_through.png.meta │ │ │ ├── pivot ON.png │ │ │ ├── pivot ON.png.meta │ │ │ ├── rebuild ON.png │ │ │ ├── rebuild ON.png.meta │ │ │ ├── rebuild.png │ │ │ ├── rebuild.png.meta │ │ │ ├── remove_behind On.png │ │ │ ├── remove_behind On.png.meta │ │ │ ├── remove_behind.png │ │ │ ├── remove_behind.png.meta │ │ │ ├── remove_front On.png │ │ │ ├── remove_front On.png.meta │ │ │ ├── remove_front.png │ │ │ ├── remove_front.png.meta │ │ │ ├── rotateTool ON.png │ │ │ ├── rotateTool ON.png.meta │ │ │ ├── rotateTool.png │ │ │ ├── rotateTool.png.meta │ │ │ ├── scaleTool ON.png │ │ │ ├── scaleTool ON.png.meta │ │ │ ├── scaleTool.png │ │ │ ├── scaleTool.png.meta │ │ │ ├── shape edit ON.png │ │ │ ├── shape edit ON.png.meta │ │ │ ├── shape edit.png │ │ │ ├── shape edit.png.meta │ │ │ ├── snapping On.png │ │ │ ├── snapping On.png.meta │ │ │ ├── snapping.png │ │ │ ├── snapping.png.meta │ │ │ ├── sphere.png │ │ │ ├── sphere.png.meta │ │ │ ├── spiral_stairs.png │ │ │ ├── spiral_stairs.png.meta │ │ │ ├── split On.png │ │ │ ├── split On.png.meta │ │ │ ├── split.png │ │ │ ├── split.png.meta │ │ │ ├── surface rotate ON.png │ │ │ ├── surface rotate ON.png.meta │ │ │ ├── surface rotate.png │ │ │ ├── surface rotate.png.meta │ │ │ ├── surface scale ON.png │ │ │ ├── surface scale ON.png.meta │ │ │ ├── surface scale.png │ │ │ ├── surface scale.png.meta │ │ │ ├── surface translate ON.png │ │ │ ├── surface translate ON.png.meta │ │ │ ├── surface translate.png │ │ │ ├── surface translate.png.meta │ │ │ ├── warning.png │ │ │ ├── warning.png.meta │ │ │ ├── wireframe On.png │ │ │ ├── wireframe On.png.meta │ │ │ ├── wireframe.png │ │ │ └── wireframe.png.meta │ │ ├── Shaders.meta │ │ └── Shaders │ │ │ ├── customDot.shader │ │ │ ├── customDot.shader.meta │ │ │ ├── customNoDepthSurface.shader │ │ │ ├── customNoDepthSurface.shader.meta │ │ │ ├── customSurface.shader │ │ │ ├── customSurface.shader.meta │ │ │ ├── grid.shader │ │ │ ├── grid.shader.meta │ │ │ ├── noZTestGenericLine.shader │ │ │ ├── noZTestGenericLine.shader.meta │ │ │ ├── zTestGenericLine.shader │ │ │ └── zTestGenericLine.shader.meta │ ├── LICENSE.md │ ├── LICENSE.md.meta │ ├── README.md │ ├── README.md.meta │ ├── SourceAssets~ │ │ ├── Dark On.pdn │ │ ├── Dark.pdn │ │ ├── GenerateFrom.pdn │ │ ├── Icons Dark On │ │ │ ├── d_AutoHeight On.png │ │ │ ├── d_DragToHeight On.png │ │ │ ├── d_RectangularBase On.png │ │ │ ├── d_SizeBaseFromCenter On.png │ │ │ ├── d_SizeBaseFromCorner On.png │ │ │ ├── d_SizeFromBottom On.png │ │ │ ├── d_SizeFromCenter On.png │ │ │ └── d_SquareBase On.png │ │ ├── Icons Dark │ │ │ ├── d_AutoHeight.png │ │ │ ├── d_DragToHeight.png │ │ │ ├── d_RectangularBase.png │ │ │ ├── d_SizeBaseFromCenter.png │ │ │ ├── d_SizeBaseFromCorner.png │ │ │ ├── d_SizeFromBottom.png │ │ │ ├── d_SizeFromCenter.png │ │ │ └── d_SquareBase.png │ │ ├── Icons Light On │ │ │ ├── AutoHeight On.png │ │ │ ├── DragToHeight On.png │ │ │ ├── RectangularBase On.png │ │ │ ├── SizeBaseFromCenter On.png │ │ │ ├── SizeBaseFromCorner On.png │ │ │ ├── SizeFromBottom On.png │ │ │ ├── SizeFromCenter On.png │ │ │ └── SquareBase On.png │ │ ├── Icons Light │ │ │ ├── AutoHeight.png │ │ │ ├── DragToHeight.png │ │ │ ├── RectangularBase.png │ │ │ ├── SizeBaseFromCenter.png │ │ │ ├── SizeBaseFromCorner.png │ │ │ ├── SizeFromBottom.png │ │ │ ├── SizeFromCenter.png │ │ │ └── SquareBase.png │ │ ├── Light On.pdn │ │ ├── Light.pdn │ │ └── SourceShapes.pdn │ ├── package.json │ └── package.json.meta ├── manifest.json └── packages-lock.json ├── ProjectSettings ├── ProjectSettings.asset └── ProjectVersion.txt └── README.md /Assets/Sample Scene.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 00eb5adeb2396ad40816a52a2aaf4a3a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Sample Scene/sample scene.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: feb2f9c7711af2e48a42a99212eda246 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Sample Scene/sample scene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a8abd7a896428b441af207d991409235 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Sample Scene/sample scene/lava.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 34ba74e0953faae41ba76867bace1b83 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Sample Scene/sample scene/lava_backdrop.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5192dd38679e26e459367d6b9ddc17a9 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Sample Scene/sample scene/simple-skybox.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b56378844ca669e4597f0abd609d2017 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Sample Scene/sample sceneSettings.lighting.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 06cba0cf6939c934aa4ce26b8e1001d2 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Test cases.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d12f3c876055b71478ca6d670eeddc42 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Test cases/test_case_1.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dec1937d62277d04dbe7ea77e36e83aa 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Test cases/test_case_10.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 99d8ef05836b87643bb2507832935c43 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Test cases/test_case_11.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eac010973848ab74ca0871e31600a80e 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Test cases/test_case_12.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: db08bd2a6b57c9441883403285f476df 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Test cases/test_case_13.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c50de69048b0cad4f916d45304f7c371 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Test cases/test_case_14.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 18e16a831146ac54ca50367140382a5e 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Test cases/test_case_15.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 24f8a8c2c55f80e4d99656ed7c80dddd 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Test cases/test_case_16.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 26e6df5ac087ffb4bb3dfe7cb47defb4 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Test cases/test_case_17.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 90253ecf5b2129d43b088d6a20ef61f0 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Test cases/test_case_18.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bdeecb18b27e8ca47ab0159b3bf41ff8 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Test cases/test_case_19.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e4bb0bfd998826540b223748a9fe08bb 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Test cases/test_case_2.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c3231aa627139dc47adabc8ec78cef27 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Test cases/test_case_20.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0d81d7e20419463489f4a4234868bc13 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Test cases/test_case_21.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc45d72bc66d8a74d86d26d0b0cdd60c 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Test cases/test_case_3.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d87fa0785d1bb9a43b56e5522d6a6cae 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Test cases/test_case_4.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e0f5eb419c0c4940aa30cb770abf493 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Test cases/test_case_5.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4967fec5922468741a32e2ad60460b84 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Test cases/test_case_6.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 689fef96c047698449f7b83530dff90f 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Test cases/test_case_7.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 813eb0aceafab7f41bf7238a4db61517 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Test cases/test_case_8.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ced66b712911c14e9f3e80d31e50fb3 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Test cases/test_case_9.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e8ccf3e090fbe74449db676c101e1ca9 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Documentation/Images/active_model.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Documentation/Images/active_model.gif -------------------------------------------------------------------------------- /Documentation/Images/box_options.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Documentation/Images/box_options.PNG -------------------------------------------------------------------------------- /Documentation/Images/brush_editing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Documentation/Images/brush_editing.gif -------------------------------------------------------------------------------- /Documentation/Images/chisel_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Documentation/Images/chisel_example.png -------------------------------------------------------------------------------- /Documentation/Images/convert_to_brush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Documentation/Images/convert_to_brush.png -------------------------------------------------------------------------------- /Documentation/Images/csg_operations.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Documentation/Images/csg_operations.gif -------------------------------------------------------------------------------- /Documentation/Images/generator_operations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Documentation/Images/generator_operations.png -------------------------------------------------------------------------------- /Documentation/Images/hierarchy_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Documentation/Images/hierarchy_model.png -------------------------------------------------------------------------------- /Documentation/Images/select_create_tool.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Documentation/Images/select_create_tool.gif -------------------------------------------------------------------------------- /Documentation/Images/stairs_generator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Documentation/Images/stairs_generator.gif -------------------------------------------------------------------------------- /Documentation/Images/tool_window_create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Documentation/Images/tool_window_create.png -------------------------------------------------------------------------------- /Packages/com.chisel.core/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.core/CHANGELOG.md -------------------------------------------------------------------------------- /Packages/com.chisel.core/CHANGELOG.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ddf6e5d473b4b084588bb682575f8282 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 10d7bf178086b0a49974caccd4ad66eb 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ea7be86fa162bf842bab08c91f9bcf88 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9bef71f57ae0781489483a7321173929 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/BrushMesh.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1252d2d0cda26d94a91b7f42b50cfb9e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/BrushMesh/BrushMesh.Internal.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b5e774a273137214787c694ec6bfad44 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/BrushMesh/BrushMesh.Optimize.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 41f9ec36e67ddfa408dcdd62eccba477 -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/BrushMesh/BrushMesh.Utility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5f24571c15a8a4d42ad7610786a59167 -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/BrushMesh/BrushMesh.Validate.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e8b0836326d52d489dec995c4b8f1dd -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/BrushMesh/BrushMesh.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 61fdc9a356a420945a42f3c3ebf962b0 -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/BrushMesh/BrushMeshBlob.internal.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 76c285ab1f59e4b4db5bbf1deddd182d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/BrushMesh/BrushMeshInstance.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb0975b13feb1764a89b497fe2aeefb7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/BrushMesh/BrushMeshManager.Internal.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ef2fb4502304313458128ea5b09156b0 -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/CompactHierarchy.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3a36687ebb45e174ca1e04544a7fc15f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/GeneratorBase.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0c8222b6636132b469cf417f20f10c32 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/GeneratorBase/BrushFactory.Shapes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e0cb2a65a2b2e314ead6ddb6b0c5cd48 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/GeneratorBase/BrushFactory.Utility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0240f440b0c5931479ca356fd6f02c64 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/GeneratorBase/ChiselBrushContainer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 30c986dfc9c31714f9c58419f0f4804e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/GeneratorBase/ChiselCurve2DBlob.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 47ffeaa2b4a92b841b2a622d7a3c329b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/GeneratorBase/ChiselPathBlob.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d25f51358a5e44c4fb248bbc1da1e598 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/GeneratorBase/ChiselPlacementTool.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b83ea69d0db474b4588b1a07ba1a2d3f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/GeneratorBase/DataStructures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4dc2d71bb6e3ebb4ba00855ce12f06f8 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/GeneratorBase/DataStructures/Curve2D.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d3ac29ae3ee3393438769ee84935ee11 -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/GeneratorBase/DataStructures/Range.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7c9b92a68d94caa4496f8fc09571b0b5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/GeneratorBase/GeneratorJobPool.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 954e016f6693ae141a9fc84ed721b178 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/GeneratorBase/IChiselNodeGenerator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4196d0a8a5863cd46a877164f39f1b1b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/GeneratorBase/Placement.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 02241bdd026b2074dbf5133010565e3c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/GeneratorBase/Placement/Axis.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 98a30d62a20a835428d4db5cea6297b7 -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Generators.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c9db67c301670564e9d65779c78fd1f7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Generators/Box.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 20607ce164d0344409f437a008f3f6c1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Generators/Box/ChiselBoxDefinitions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 427cf7de97a89354fa37d614dbe9f467 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Generators/Brush.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 391496ad24b21d9438bade031a98793a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Generators/Capsule.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3852911e78df34840bffa00eb655bdd7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Generators/Cylinder.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 157b34325741dc541846a59e727c2f29 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Generators/ExtrudedShape.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 957027cbcf7d5b441b74291952205a47 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Generators/Hemisphere.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 99786a7054863294dbe39348fe39b2ce 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Generators/LinearStairs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c2d9fefb47b635f488b86616550f186a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Generators/PathedStairs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f57c10d4783f7a242894e1630d78cf98 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Generators/RevolvedShape.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e0213d3f69c337c4488d77acb041cee2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Generators/Sphere.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 18af4005f0c4b5742ad4b638d15c30b2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Generators/SpiralStairs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3a5111a9bb02bd841959fe9994b889b2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Generators/Stadium.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1a1bf39758c6bdb4a93718961d2c7fe7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Generators/Torus.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6c7958b46509dbe45b818d996c5841de 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Managers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a67ebc74a37c434eaef4326db7619d1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Managers/ChiselMaterialManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 502af605734203e4bb491f0883da8370 -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Nodes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6c82cbe6bec4e6040aff9e3f307b62de 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Nodes/CSGOperationType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f5d8dea773c34549a004dd5aa8a51ef 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Nodes/CSGTree.Extensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cac3e46f69931d74fa3cea03016dbda5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Nodes/CSGTree.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a3ff6b0bdb7544341beb2054e3d76493 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Nodes/CSGTreeBranch.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a980379e36ffedc40be5d172277d3dca 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Nodes/CSGTreeBrush.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 083dabe01ed986e439a03ab2126f56bf 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Nodes/CSGTreeNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0d63a75e3008b7244bce6b82682e6ece 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/PropertyAttributes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7d9214a4479ccaf44b79037529a376e8 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/PropertyAttributes/AngleValueAttribute.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace Chisel.Core 4 | { 5 | public class AngleValueAttribute : PropertyAttribute {} 6 | } 7 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/PropertyAttributes/Conditional.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3a3ba837f4bb07444b34f7be6ac191b9 -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/PropertyAttributes/ConditionalBaseAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using UnityEngine; 3 | 4 | namespace Chisel.Core 5 | { 6 | [AttributeUsage(AttributeTargets.Field, AllowMultiple = true, Inherited = true)] 7 | public abstract class ConditionalBaseAttribute : PropertyAttribute 8 | { 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/PropertyAttributes/ConditionalBaseAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2844222ce64ac7a4aa4243732f626c02 -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/PropertyAttributes/ConditionalHideAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 717afbea83cf307478231c211d713219 -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/PropertyAttributes/ConditionalNameAttribute.cs: -------------------------------------------------------------------------------- 1 | namespace Chisel.Core 2 | { 3 | public class ConditionalNameAttribute : ConditionalBaseAttribute 4 | { 5 | public readonly string Name; 6 | 7 | public ConditionalNameAttribute(string name) 8 | { 9 | this.Name = name; 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/PropertyAttributes/ConditionalNameAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc31ed6953b887d4f88b607dc071dae6 -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/PropertyAttributes/ConditionalNamePartAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 761d583f0ecc98d44b00c52aae79d0fc -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/PropertyAttributes/DistanceValueAttribute.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace Chisel.Core 4 | { 5 | public class DistanceValueAttribute : PropertyAttribute 6 | { 7 | public DistanceValueAttribute(UnitType type = UnitType.World) { this.Type = type; } 8 | public UnitType Type; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/PropertyAttributes/EulerValueAttribute.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace Chisel.Core 4 | { 5 | public class EulerValueAttribute : PropertyAttribute {} 6 | } 7 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/PropertyAttributes/HideFoldoutAttribute.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace Chisel.Core 4 | { 5 | public class HideFoldoutAttribute : PropertyAttribute 6 | { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/PropertyAttributes/HideFoldoutAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 516a0ffbe022fe34e95edbd3003773dc -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/PropertyAttributes/NamedItemsAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4bd6e460c0e2a0a468af78059b0147d6 -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/PropertyAttributes/PositionValueAttribute.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace Chisel.Core 4 | { 5 | public class PositionValueAttribute : PropertyAttribute 6 | { 7 | public PositionValueAttribute(UnitType type = UnitType.World) { this.Type = type; } 8 | public UnitType Type; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/PropertyAttributes/ScaleValueAttribute.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace Chisel.Core 4 | { 5 | public class ScaleValueAttribute : PropertyAttribute { } 6 | } 7 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/PropertyAttributes/ToggleFlagAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ebcd51a612ab5894080375ad30528dd0 -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/PropertyAttributes/ToggleFlagsAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 584de96ae5b153142963606dfcf83032 -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/PropertyAttributes/UnitType.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace Chisel.Core 4 | { 5 | public enum UnitType 6 | { 7 | World, 8 | Pixels 9 | } 10 | } -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/PropertyAttributes/UnitType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ba681d08bec06234483122b95dc53492 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Surfaces.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e4ba815aa3dda2b41a53ad4870fefbc6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Surfaces/ChiselSurface.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 650b6e155578edf4c83834e8add36438 -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Surfaces/ChiselSurfaceArray.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e180c85d2dca2ac439c8ddba78d1d87e -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Surfaces/ChiselSurfaceMetadata.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 902648afc5123584aa3cc714d683ab73 -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Surfaces/InternalChiselSurface.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c07e245795820984b852a74c79bbf23f -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Surfaces/SurfaceDestinationParameters.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c5f2ae5c78eedd4eb5266013a6cb77d -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Surfaces/SurfaceDetails.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 49ba239b35c2b00419c5c12da331e7ac -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Surfaces/UVMatrix.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 78dea521bb32bf348848af424ed6fa7f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14a964668b01d9a4b847c240a3479f94 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/CSGConstants.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: deccc93cd1f474b4ea1e8ae5f02d1927 -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Cache.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0b415fd7e26e0e64d93b34b5647fc918 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Cache/ChiselLookup.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e4e9c911c42e44344a35419963890000 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Categorization.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eaaa687e6a1775c40b02b420e48b8e65 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Categorization/CategoryIndex.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8cf7acc6c1d3df34793af157c3e053e4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Categorization/RoutingLookup.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 813417ee937a1ba4f908d9f20d298044 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Categorization/RoutingTable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 42d049753e57f5c4ab4bffea52369891 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Containers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 95c8db79137486c43938d267ce4b0bb6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Containers/HashedVertices.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f4f57bacb6ab5ee49bd8bd230df49bfa 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Containers/IDManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d244bdcd7c0db634face8e5f39799354 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Containers/PointerReference.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d9d7f45e6d9b1e14799613050862f241 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Containers/SectionManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6b9ac018ee7f3944f8bbb11c78048241 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 368f09abdda531c4a81f9b708ba4898b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/BuildCompactTreeJob.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d5231b4312a283b41b836ae3f953edcb 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/BuildLookupTablesJob.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5e3a92f968f8f854294d8e53ca35a061 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/CacheRemappingJob.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5d0cd39b8df49804ead61c6839f80178 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/CreateBlobPolygonsBlobsJob.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 79f9c24365075524d8e09c143ca36378 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/CreateIntersectionLoopsJob.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 82d79b9244f8ea14581b8ea24149a243 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/CreateRoutingTableJob.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 00e33eba72c8d8d4493635647f859ccc 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/FillBrushMeshBlobLookupJob.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1d8f8d00680e0484e9f1c652c560ff1c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/FillVertexBuffersJob.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e4976a1a1664ede4fa03300a777a2593 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/FindBrushPairsJob.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 38ac1a09e7e8d9f44970a7abd9739d73 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/FindModifiedBrushesJob.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c2ca45aca7c65034f847ade6d9ab9609 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/GatherOutputSurfacesJob.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a1c295f7a84fad34bb2fc69f493e92cc 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/InvalidateBrushesJob.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d7ad2599a66c38845a2ee2467fde7975 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/JobData.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b8070356ef9931a41a96fee3c843d30c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/JobData/BasePolygonsBlob.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a780af335294074aa5ea0819cebacb2 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/JobData/BrushIntersection.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: db89c12306eaa754085c2ae9d6e3f7c2 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/JobData/BrushTreeMesh.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e6eb13e74525f84da283255f9ceb4ce 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/JobData/CompactTree.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 51121ff20cdeb3247ae4149fdb2582bb 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/JobData/IndexOrder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0dc499ce13308824f8558b8440c4afe4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/JobData/NodeTransformation.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Unity.Mathematics; 3 | 4 | namespace Chisel.Core 5 | { 6 | struct NodeTransformations 7 | { 8 | public float4x4 nodeToTree; 9 | public float4x4 treeToNode; 10 | }; 11 | } 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/JobData/NodeTransformation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0e1ea134cdc30c942b8d1c02ad5bd61b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/PerformCSGJob.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 97582d934267231418b555e4056f33e5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/StoreBrushIntersectionsJob.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0aa5b7abeebf0504e969f2d4a70b040e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/StoreToCacheJob.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ccc78f40a9537984ba5ab2d5b3177ba5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/UpdateBrushMeshIDsJob.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ccfb13e4783146947bac2e15e7b8ca2c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/UpdateBrushOutlineJob.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ec234a9297602ff44877c82315dc99a8 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/UpdateTransformationsJob.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0b6c3fcaca169e54299b92ede7dc4d73 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Managers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 980f21beffc72014ba732ddc1f6d3386 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Managers/CompactTreeBuilder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4d6495153be51d7409012acb94339abd 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Managers/Decomposition.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c1e0a6caea3331e4a9c3cf339d7fbdb3 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Thirdparty.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8166f9716dde73c45b70a31f5f034f79 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Thirdparty/BayazitDecomposer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a00a95c911baa884d8c74bff5e734b0a -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Thirdparty/BayazitDecomposerBursted.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f95e3c9208c61b74a8ad004411ee901b -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Thirdparty/ConvexHullCalculator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 39675cec52180f14d83abec1df11ee8f -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Thirdparty/Poly2Tri.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e151a84f8aaad9044a88ff61182c6518 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Thirdparty/Poly2Tri/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.core/Chisel/Core/2.Processing/Thirdparty/Poly2Tri/AUTHORS.txt -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Thirdparty/Poly2Tri/AUTHORS.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 559deb7c4c09baa46ad30baa85ad0e61 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Thirdparty/Poly2Tri/DTSweep.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb2baf576d4880a4fbdeb80e1ab26461 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Thirdparty/Poly2Tri/LICENSE.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f1c728c0cd96a3c48bf58c116d8a423f 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/3.Output.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e46503b4eab3a534b846377bc0fe725f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/3.Output/Query.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dccc8dbfa75935b469c57d6f0b6b6efb 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/3.Output/Query/CSGQueryManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f85b167b5209e584b85a46fc29ffe05e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/3.Output/Query/CSGTreeBrushIntersection.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e278eed032a358e4c966cc132da61c89 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/3.Output/Query/ChiselSurfaceIntersection.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 23b6d5a18ac31714d91e692ecfcf6c45 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/3.Output/Query/FinishMeshUpdateDelegate.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e1385c59c0998704f9f4f023d8d8312a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/3.Output/Query/GeneratedMeshContents.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1b32b175c6e3a646825814d7a8c56f1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/3.Output/Query/GeneratedMeshDescription.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c57564fd1bd2c834fab4cf04221ef86d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/3.Output/Query/MeshQuery.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 756a72fffa8e4834f91db9468ba13dc7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/3.Output/Query/VertexBufferContents.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae116cdb34d112545a0cd75dd9349995 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/3.Output/Query/VertexChannelFlags.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d73d6f8e216eb945a16b13e6e641927 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/3.Output/Wireframe.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fdaa003516ffcd74485b125518b0d447 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/3.Output/Wireframe/BurstOutline.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa0d53b92bd1aa7459bd421d13ccf3df 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/3.Output/Wireframe/ChiselWireframe.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 84c7e39f0fb1eb84b80b399fbe995886 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/ExtensionMethods.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 684fb88febcd3fd42943d6f0acb84928 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/ExtensionMethods/BlobArrayExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9a94f66bb46fd7e488b8f665420b7762 -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/ExtensionMethods/BlobBuilderExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5d08aeda2966bf240bf6b2796e6a7251 -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/ExtensionMethods/BoundsExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 08ca8b526d0a8bf4d8e64e12f6491317 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/ExtensionMethods/ChiselNativeArrayExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b8ae57d3682812429200a51474e7e3a -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/ExtensionMethods/ChiselNativeListExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bfe96ad4751186649b43c32385b8ef5b -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/ExtensionMethods/HashExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 15e5420a2a0c80142bd3af18ba7dbed8 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/ExtensionMethods/JobExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2967aac50e56a17499b74b4829ddcbc4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/ExtensionMethods/JobHandleExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2419664e713e6d9449a24193ebb228dc 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/ExtensionMethods/MathExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 09c7dc13fa2517e4da64fe4630d35b8d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/ExtensionMethods/NativeCollection.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 689d692005c50d5439f4d44f5f0aae75 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/ExtensionMethods/NativeListExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 106667f05c7ec7744808ee8fbbdcd779 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/ExtensionMethods/NativeStreamExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bb1531530e3d5eb479ab43d2ef66a96e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/ExtensionMethods/PlaneExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 019cc462dc000344381e99ae0ba6dfe4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/ExtensionMethods/SystemHashSetExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11e5ff4030129aa4fb79f2dbff840cf6 -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/assembly.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4cfd9d77ecd493040b7b28a8981a232f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/com.chisel.core.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 642cde28f6a094d458a26f9a4533c056 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c5e4e25289b96f7479cea6e5f00b1d1b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/CastShadows.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 53340697a84d92643a339913177ceeb1 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/CastShadows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.core/Chisel/Package Resources/CastShadows.png -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/Collider.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 54a5ba1f38e1d774084736c5245bd999 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/Collider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.core/Chisel/Package Resources/Collider.png -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/Culled.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bbfb3050d1c86ea4481f5cf75a27675e 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/Culled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.core/Chisel/Package Resources/Culled.png -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/DefaultPhysicMaterial.physicMaterial.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9a131e27bee822f49bbeaa7ee131d929 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 13400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/Discarded.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c4ae20e8df278b6459449167e571e548 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/Discarded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.core/Chisel/Package Resources/Discarded.png -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/Floor.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 15039fb859f8cd64d824af5a2743f20f 3 | timeCreated: 1532081897 4 | licenseType: Free 5 | NativeFormatImporter: 6 | mainObjectFileID: -1 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/Floor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.core/Chisel/Package Resources/Floor.png -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/Invisible.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc32fe0d86b9c9e42bca30a1df479fd2 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/Invisible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.core/Chisel/Package Resources/Invisible.png -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/ReceiveShadows.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d9918ebea62f9b54cb883f09f89983ac 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/ReceiveShadows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.core/Chisel/Package Resources/ReceiveShadows.png -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/ShadowOnly.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b3d3debf013a86447a08174470feb772 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/ShadowOnly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.core/Chisel/Package Resources/ShadowOnly.png -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/Step.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d46a258d2f81e1c42bc91a293e9c0ed0 3 | timeCreated: 1542225161 4 | licenseType: Free 5 | NativeFormatImporter: 6 | mainObjectFileID: 2100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/Step.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.core/Chisel/Package Resources/Step.png -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/Tread.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6060f6e211f81ee4eb7d3f50d73265fc 3 | timeCreated: 1542225176 4 | licenseType: Free 5 | NativeFormatImporter: 6 | mainObjectFileID: 2100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/Tread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.core/Chisel/Package Resources/Tread.png -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/Trigger.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 00226d37db4b1c34795265cf4d44aa7a 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/Trigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.core/Chisel/Package Resources/Trigger.png -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/Wall.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ca37785d773692b47bd7339c9dd802ce 3 | timeCreated: 1452705603 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/Wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.core/Chisel/Package Resources/Wall.png -------------------------------------------------------------------------------- /Packages/com.chisel.core/LICENSE.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 89402d15b90aaf24f97e03f1602f2a7c 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.core/README.md -------------------------------------------------------------------------------- /Packages/com.chisel.core/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 22777cbdba0cf5749a5f3f3ffbe73699 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9745c31a88fdbe94b9c262150246bc1b 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.components/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.components/CHANGELOG.md -------------------------------------------------------------------------------- /Packages/com.chisel.unity.components/CHANGELOG.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af210f8e58e66a74aad1d9e1e411a412 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.components/Chisel.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 090a8048e8a8648498454c4b5b082c67 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.components/Chisel/Components.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e14f99de669315498384926da955153 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.components/Chisel/Components/Components.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a13c9dd524b8a2942a05c6c3603b648e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.components/Chisel/Components/Components/Base.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9bd1c33d8c091b14eafcb5a922a61993 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.components/Chisel/Components/Components/Containers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d2390b09bd456814cae78121fef544a7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.components/Chisel/Components/Components/Generated.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5b7c51b7bc79d7940b1c56dcd64c7e93 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.components/Chisel/Components/Components/Generators.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0b9ceab36eda7ff44b974e411713c907 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.components/Chisel/Components/Components/Modifiers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 923bd432ab1c49b44aefc2fcae2a2484 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.components/Chisel/Components/ExtensionMethods.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8aad705e0cedb6e4090ef192856c561f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.components/Chisel/Components/ExtensionMethods/SerializedObjectExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f40ee482ad4a26948a848e8bf128bc82 -------------------------------------------------------------------------------- /Packages/com.chisel.unity.components/Chisel/Components/ExtensionMethods/TransformExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6c8fe767fba966e4697d47c300d81fec -------------------------------------------------------------------------------- /Packages/com.chisel.unity.components/Chisel/Components/Managers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: feeac573d2a44ef4e9cd15e2602247d2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.components/Chisel/Components/Managers/ChiselGeneratedComponentManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b7349e4354f88548b3edfb115094ab7 -------------------------------------------------------------------------------- /Packages/com.chisel.unity.components/Chisel/Components/Managers/ChiselGeneratedModelMeshManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ebf185de82fb5774f8beb4cd7a25b134 -------------------------------------------------------------------------------- /Packages/com.chisel.unity.components/Chisel/Components/Managers/ChiselHierarchyItem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 655d58314cd46f54d909104059b55fce -------------------------------------------------------------------------------- /Packages/com.chisel.unity.components/Chisel/Components/Managers/ChiselMeshQueryManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a745edd58fe3bb4387422c614a9badb -------------------------------------------------------------------------------- /Packages/com.chisel.unity.components/Chisel/Components/Managers/ChiselModelManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5a75b0d8f47c5994795d64d3c410cd45 -------------------------------------------------------------------------------- /Packages/com.chisel.unity.components/Chisel/Components/Managers/ChiselNodeHierarchyManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a5eb229c0d8d28a479ff2029350e0686 -------------------------------------------------------------------------------- /Packages/com.chisel.unity.components/Chisel/Components/Query.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cf3a33e7d5815634b9ab7c529baac763 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.components/Chisel/Components/Query/ChiselBrushIntersection.cs: -------------------------------------------------------------------------------- 1 | using Chisel.Core; 2 | 3 | namespace Chisel.Components 4 | { 5 | public class ChiselBrushIntersection 6 | { 7 | public ChiselNode node; 8 | public CSGTreeBrushIntersection intersection; 9 | }; 10 | } 11 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.components/Chisel/Components/Query/Frustum.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using UnityEngine; 3 | 4 | namespace Chisel.Components 5 | { 6 | [Serializable] 7 | public sealed class Frustum 8 | { 9 | public readonly Plane[] Planes = new Plane[6]; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.components/Chisel/Components/Query/Frustum.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dbf1e28c73ab5664b8142b13d0853ef6 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.components/Chisel/Components/Query/SurfaceIntersection.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Chisel.Core; 3 | 4 | namespace Chisel.Components 5 | { 6 | [Serializable] 7 | public sealed class SurfaceIntersection 8 | { 9 | public SurfaceReference surface; 10 | public ChiselSurfaceIntersection intersection; 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.components/Chisel/Components/Utility.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af2da04662061bc47b522866429d11fa 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.components/Chisel/Components/Utility/ChiselBoundsUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cdb3c2bca0bf3354ba865c4a349a1228 -------------------------------------------------------------------------------- /Packages/com.chisel.unity.components/Chisel/Components/Utility/ChiselComponentFactory.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b844a09fda025f745868e274124fab4b -------------------------------------------------------------------------------- /Packages/com.chisel.unity.components/Chisel/Components/Utility/ChiselObjectUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a7d176160b66c947b69029467db19f7 -------------------------------------------------------------------------------- /Packages/com.chisel.unity.components/Chisel/Components/com.chisel.components.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c5c65302a7823bb47a9cb6d9c848b0da 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.components/LICENSE.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a301e2623a1a2f2428bce9cc1e8d7cfa 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.components/README.md -------------------------------------------------------------------------------- /Packages/com.chisel.unity.components/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0cdf482d4bad6b249b6987589954ebc1 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.components/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6489854454b5cd34bbed087ce8eaa861 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/CHANGELOG.md -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/CHANGELOG.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa775f09fe1c55048b30fb8074add967 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 292cc1ec62cb40e4a998117be422c835 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 50f379f4ebe837149babcc4b80759735 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/ComponentEditors.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ab2efb58b4986744d8629541cb4fc805 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/ComponentEditors/Base.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7f8a644413ec7fa42a09b8e2b229b67e 3 | folderAsset: yes 4 | timeCreated: 1547469778 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/ComponentEditors/Containers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 83ff178c7a1a1e84f9e821fd98668750 3 | folderAsset: yes 4 | timeCreated: 1547460893 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/ComponentEditors/Generators.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b85e546b6a39a6942aaf20f90d271cbd 3 | folderAsset: yes 4 | timeCreated: 1547460893 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/ComponentEditors/Modifiers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8130d6a1df2c4f44b9d4647bd7857ac0 3 | folderAsset: yes 4 | timeCreated: 1547460893 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/DebugHelpers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d8cab4a6650c31746a831ef2ffe352b9 3 | folderAsset: yes 4 | timeCreated: 1547469246 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/DragAndDrop.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8860ca01cc4eeb249997a21f1a636576 3 | folderAsset: yes 4 | timeCreated: 1547469246 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/DragAndDrop/IChiselDragAndDropOperation.cs: -------------------------------------------------------------------------------- 1 | namespace Chisel.Editors 2 | { 3 | public interface IChiselDragAndDropOperation 4 | { 5 | void UpdateDrag(); 6 | void PerformDrag(); 7 | void CancelDrag(); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/EditorTools.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc3be1e3906a17b49bf95067b5849cd4 3 | folderAsset: yes 4 | timeCreated: 1547469246 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/EditorTools/IChiselToolNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 507d40a6674b8a941ab4ba41db36a647 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/ExtensionMethods.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa6bb1c6b909d934db7986fd9198f890 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/Hierarchy.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6e83d27e76b85ad42ab25aa806215ffa 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/Keyboard.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 38a44318106e78946adc518d47c09531 3 | folderAsset: yes 4 | timeCreated: 1547469246 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/PropertyDrawers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1157486fc6bb8ec4da34e9272f3aa70d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/PropertyDrawers/AngleValueDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: adcfebcbabf3a5a40a8523133167de48 -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/PropertyDrawers/ChiselMaterialPropertyDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 51839ea597a2f4c4998173c42cad6b10 -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/PropertyDrawers/DistanceValueDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3c7547d8119c293438845ca9f0afc327 -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/PropertyDrawers/EulerValueDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6531c7fdc3b9ac840a1919cd8f0165da -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/PropertyDrawers/PositionValueDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa40606632303dd4a9860394f4f6b74c -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/PropertyDrawers/ScaleValueDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b042f49227e3dd64e873f6b775b2770d -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/PropertyDrawers/SurfaceDetailsPropertyDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 486faa74edbf3404aaf9a553ce751f17 -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/SceneView.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4cdb79d8c0afbf042b58c4503ecdffcf 3 | folderAsset: yes 4 | timeCreated: 1547469246 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/ChiselDrawModes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 912270e759d35164bba4214a4b8b2488 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/ChiselEditorHandles.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: df1f7de68f5c1254f8b5e63ee95a9579 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/ChiselSceneGUIStyle.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6b8f08d879227e34290fa6abbafc330d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/Handles.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5e57f806d52260d4494ed9cc5a500266 3 | folderAsset: yes 4 | timeCreated: 1547469247 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/Handles/TurnHandle.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ed92b31b5b1861b4b939f7a8dfbc1f08 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/Measurements.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 890aa704581cd474aae51bb108944774 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/Overlays.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e0ca5f29db4e724a819ec423368acb9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/SceneHandles.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 59261250d0b35344aa7256d28b73f699 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/Selection.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6e0de893b78781c40b0bb4c2335f2f1c 3 | folderAsset: yes 4 | timeCreated: 1525172795 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/Selection/ChiselClickSelectionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/Selection/ChiselClickSelectionManager.cs -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/Snapping.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ebb1d7a11ff22ac4ebed5415e2eecbb2 3 | folderAsset: yes 4 | timeCreated: 1535374356 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/Snapping/SceneHandles.Extents1D.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: de3f23171de1c254f9d6753bc1a6c059 -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/Snapping/SceneHandles.Extents3D.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 24d7db29e772b184886b2a328081d551 -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/Snapping/SceneHandles.Grid.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fbf9a2aa99092c44ea4272d9ca10e7a7 -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/Snapping/SceneHandles.GridRenderer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cc6f3b6c5674a31478a07e28245aa323 -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/Snapping/SceneHandles.Snapping.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce1e62470170dbc4a96d69ffb67feb18 -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/Snapping/SceneHandles.SnappingUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a7138fcd7678fbe468cc09c37a1d1ec4 -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/Units.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c92d1b6c04648914c831d11992f1bc95 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/Units/Units.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9bd8c3a10a930714ab437cd5edf65971 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/Utilities.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 753da2d1616b0414890a9d7b77a61968 3 | folderAsset: yes 4 | timeCreated: 1535359651 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/Utilities/SceneHandles.CameraUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 69bb972a27273a647b9d496476c1beb5 -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/Utilities/SceneHandles.ColorUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0f69350a43f74a5488f0bdb50d94ad31 -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/Utilities/SceneHandles.GameObjectExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 18c40ee3d6b593e41a20b0777471b411 -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/Utilities/SceneHandles.GeometryUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 974773dc1c428884089cbd9df5cbee04 -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/Utilities/SceneHandles.RectUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb604cc9f0a2d8d4e88b77ebfacc5468 -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/Utilities/SceneHandles.Rendering.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4104d4bb4fbf7494981e2379b9f6a09c -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/Utilities/SceneHandles.SelectionUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 13485783e2d968f42accd155a5d943b1 -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/Visualization.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fd0f2cf0c65919c4ba63b0556895efa2 3 | folderAsset: yes 4 | timeCreated: 1525156914 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/Visualization/LineMeshRenderer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 768afae860005ea49a9e45a85056e508 -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/Visualization/MaterialManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a0f923dd684924044a9a6493c48a6eb8 -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/Visualization/PointMeshRenderer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 40ef6919e2d2e6d45975ae0405ebafc0 -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/Visualization/PolygonMeshRenderer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: acf0054b307594e40959b7f78b2050ab -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/Visualization/SceneLabels.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c64466f7f371d5a409c526e82cdebcdb -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/Settings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c2567fd7f9b502043bc0c47bc1256664 3 | folderAsset: yes 4 | timeCreated: 1547470003 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/Settings/ChiselGridSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c2f162cef8c4f6d428542e1857932c9f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/SurfaceEditors.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4eeb20e20e6d91e4c8927b8ae69dcd74 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/SurfaceEditors/ChiselSurfaceMetadataEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 207b70e677322fd438fa98281a1c37fd -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/com.chisel.editor.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cec47a91117bc4f45854014082d3955a 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 777415b947142fe4ea081a395389ed83 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4299338d99750364395c6e53db095ce7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/AutoHeight On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/AutoHeight On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/AutoHeight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/AutoHeight.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/BoundsSnap ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/BoundsSnap ON.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/BoundsSnap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/BoundsSnap.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/DragToHeight On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/DragToHeight On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/DragToHeight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/DragToHeight.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/EdgeSnap ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/EdgeSnap ON.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/EdgeSnap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/EdgeSnap.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/Pivot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/Pivot.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/PivotSnap ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/PivotSnap ON.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/PivotSnap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/PivotSnap.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/RectangularBase On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/RectangularBase On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/RectangularBase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/RectangularBase.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/SizeBaseFromCenter On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/SizeBaseFromCenter On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/SizeBaseFromCenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/SizeBaseFromCenter.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/SizeBaseFromCorner On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/SizeBaseFromCorner On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/SizeBaseFromCorner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/SizeBaseFromCorner.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/SizeFromBottom On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/SizeFromBottom On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/SizeFromBottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/SizeFromBottom.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/SizeFromCenter On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/SizeFromCenter On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/SizeFromCenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/SizeFromCenter.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/SquareBase On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/SquareBase On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/SquareBase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/SquareBase.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/SurfaceSnap ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/SurfaceSnap ON.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/SurfaceSnap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/SurfaceSnap.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/UVEdgeSnap ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/UVEdgeSnap ON.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/UVEdgeSnap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/UVEdgeSnap.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/UVGridSnap ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/UVGridSnap ON.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/UVGridSnap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/UVGridSnap.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/UVVertexSnap ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/UVVertexSnap ON.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/UVVertexSnap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/UVVertexSnap.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/VertexSnap ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/VertexSnap ON.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/VertexSnap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/VertexSnap.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/add.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/box.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/boxOutline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/boxOutline.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/boxSurfaces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/boxSurfaces.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/capsule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/capsule.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/centerPivotOnEach ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/centerPivotOnEach ON.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/centerPivotOnEach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/centerPivotOnEach.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/centerPivotOnSelectionCenter ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/centerPivotOnSelectionCenter ON.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/centerPivotOnSelectionCenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/centerPivotOnSelectionCenter.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/convertToBrush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/convertToBrush.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_additive On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_additive On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_additive On@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_additive On@2x.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_additive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_additive.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_additive@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_additive@2x.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_copy On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_copy On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_copy On@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_copy On@2x.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_copy.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_intersecting On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_intersecting On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_intersecting On@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_intersecting On@2x.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_intersecting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_intersecting.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_intersecting@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_intersecting@2x.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_model.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_model@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_model@2x.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_subtractive On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_subtractive On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_subtractive On@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_subtractive On@2x.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_subtractive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_subtractive.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_subtractive@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_subtractive@2x.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/cylinder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/cylinder.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_AutoHeight On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_AutoHeight On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_AutoHeight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_AutoHeight.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_BoundsSnap ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_BoundsSnap ON.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_BoundsSnap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_BoundsSnap.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_DragToHeight On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_DragToHeight On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_DragToHeight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_DragToHeight.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_EdgeSnap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_EdgeSnap.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_PivotSnap ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_PivotSnap ON.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_PivotSnap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_PivotSnap.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_RectangularBase On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_RectangularBase On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_RectangularBase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_RectangularBase.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_SizeBaseFromCenter On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_SizeBaseFromCenter On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_SizeBaseFromCenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_SizeBaseFromCenter.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_SizeBaseFromCorner On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_SizeBaseFromCorner On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_SizeBaseFromCorner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_SizeBaseFromCorner.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_SizeFromBottom On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_SizeFromBottom On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_SizeFromBottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_SizeFromBottom.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_SizeFromCenter On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_SizeFromCenter On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_SizeFromCenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_SizeFromCenter.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_SquareBase On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_SquareBase On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_SquareBase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_SquareBase.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_SurfaceSnap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_SurfaceSnap.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_UVEdgeSnap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_UVEdgeSnap.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_UVGridSnap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_UVGridSnap.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_UVVertexSnap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_UVVertexSnap.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_VertexSnap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_VertexSnap.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_add.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_boxSurfaces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_boxSurfaces.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_centerPivotOnEach ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_centerPivotOnEach ON.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_centerPivotOnEach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_centerPivotOnEach.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_centerPivotOnSelectionCenter ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_centerPivotOnSelectionCenter ON.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_centerPivotOnSelectionCenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_centerPivotOnSelectionCenter.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_convertToBrush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_convertToBrush.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_csg_additive On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_csg_additive On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_csg_additive On@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_csg_additive On@2x.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_csg_additive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_csg_additive.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_csg_additive@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_csg_additive@2x.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_csg_copy On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_csg_copy On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_csg_copy On@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_csg_copy On@2x.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_csg_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_csg_copy.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_csg_copy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_csg_copy@2x.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_csg_intersecting On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_csg_intersecting On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_csg_intersecting On@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_csg_intersecting On@2x.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_csg_intersecting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_csg_intersecting.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_csg_intersecting@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_csg_intersecting@2x.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_csg_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_csg_model.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_csg_model@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_csg_model@2x.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_csg_subtractive On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_csg_subtractive On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_csg_subtractive On@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_csg_subtractive On@2x.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_csg_subtractive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_csg_subtractive.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_csg_subtractive@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_csg_subtractive@2x.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_edgeSnap On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_edgeSnap On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_grid On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_grid On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_grid.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_moveTool ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_moveTool ON.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_moveTool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_moveTool.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_ol_minus On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_ol_minus On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_ol_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_ol_minus.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_ol_plus On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_ol_plus On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_ol_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_ol_plus.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_pass_through On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_pass_through On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_pass_through.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_pass_through.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_pivot ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_pivot ON.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_pivot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_pivot.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_rebuild ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_rebuild ON.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_rebuild.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_rebuild.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_remove_behind On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_remove_behind On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_remove_behind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_remove_behind.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_remove_front On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_remove_front On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_remove_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_remove_front.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_rotateTool ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_rotateTool ON.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_rotateTool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_rotateTool.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_scaleTool ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_scaleTool ON.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_scaleTool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_scaleTool.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_shape edit ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_shape edit ON.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_shape edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_shape edit.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_snapping On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_snapping On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_snapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_snapping.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_split On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_split On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_split.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_split.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_surface rotate ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_surface rotate ON.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_surface rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_surface rotate.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_surface scale ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_surface scale ON.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_surface scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_surface scale.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_surface translate ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_surface translate ON.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_surface translate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_surface translate.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_surfaceSnap On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_surfaceSnap On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_vertexSnap On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_vertexSnap On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_wireframe On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_wireframe On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_wireframe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_wireframe.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/free_draw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/free_draw.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/grid On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/grid On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/grid.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/hemisphere.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/hemisphere.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/linear_stairs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/linear_stairs.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/moveTool On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/moveTool On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/moveTool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/moveTool.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/ol_minus On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/ol_minus On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/ol_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/ol_minus.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/ol_plus On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/ol_plus On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/ol_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/ol_plus.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/pass_through On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/pass_through On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/pass_through.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/pass_through.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/pivot ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/pivot ON.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/rebuild ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/rebuild ON.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/rebuild.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/rebuild.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/remove_behind On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/remove_behind On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/remove_behind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/remove_behind.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/remove_front On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/remove_front On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/remove_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/remove_front.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/rotateTool ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/rotateTool ON.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/rotateTool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/rotateTool.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/scaleTool ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/scaleTool ON.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/scaleTool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/scaleTool.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/shape edit ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/shape edit ON.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/shape edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/shape edit.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/snapping On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/snapping On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/snapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/snapping.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/sphere.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/sphere.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/spiral_stairs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/spiral_stairs.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/split On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/split On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/split.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/split.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/surface rotate ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/surface rotate ON.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/surface rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/surface rotate.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/surface scale ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/surface scale ON.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/surface scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/surface scale.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/surface translate ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/surface translate ON.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/surface translate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/surface translate.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/warning.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/wireframe On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/wireframe On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/wireframe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/Editor Resources/Icons/wireframe.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b57c353a439bd08448f8009a55ed1dab 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Shaders/customDot.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2548094574e522640b943c3c176dce0c 3 | timeCreated: 1461868374 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Shaders/customNoDepthSurface.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2dc001f3c8e2fc44da9f6f8241adf719 3 | timeCreated: 1463911898 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Shaders/customSurface.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4174142a3b72b9046a775d4a6f4d9992 3 | timeCreated: 1463650150 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Shaders/grid.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0e686498c6837b5428e854b4aff63481 3 | timeCreated: 1489408832 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Shaders/noZTestGenericLine.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 383afbc9ffab7724790d17284b3f50f0 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Shaders/zTestGenericLine.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 73a6c540bbd2d124cab6cbb532211354 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/LICENSE.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 362c4f82374bbc64184842937a46eba4 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/README.md -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7682c2cf63dc5f74abae81565e756696 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/SourceAssets~/Dark On.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/SourceAssets~/Dark On.pdn -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/SourceAssets~/Dark.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/SourceAssets~/Dark.pdn -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/SourceAssets~/GenerateFrom.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/SourceAssets~/GenerateFrom.pdn -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/SourceAssets~/Icons Dark On/d_AutoHeight On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/SourceAssets~/Icons Dark On/d_AutoHeight On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/SourceAssets~/Icons Dark On/d_DragToHeight On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/SourceAssets~/Icons Dark On/d_DragToHeight On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/SourceAssets~/Icons Dark On/d_RectangularBase On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/SourceAssets~/Icons Dark On/d_RectangularBase On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/SourceAssets~/Icons Dark On/d_SizeBaseFromCenter On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/SourceAssets~/Icons Dark On/d_SizeBaseFromCenter On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/SourceAssets~/Icons Dark On/d_SizeBaseFromCorner On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/SourceAssets~/Icons Dark On/d_SizeBaseFromCorner On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/SourceAssets~/Icons Dark On/d_SizeFromBottom On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/SourceAssets~/Icons Dark On/d_SizeFromBottom On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/SourceAssets~/Icons Dark On/d_SizeFromCenter On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/SourceAssets~/Icons Dark On/d_SizeFromCenter On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/SourceAssets~/Icons Dark On/d_SquareBase On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/SourceAssets~/Icons Dark On/d_SquareBase On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/SourceAssets~/Icons Dark/d_AutoHeight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/SourceAssets~/Icons Dark/d_AutoHeight.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/SourceAssets~/Icons Dark/d_DragToHeight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/SourceAssets~/Icons Dark/d_DragToHeight.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/SourceAssets~/Icons Dark/d_RectangularBase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/SourceAssets~/Icons Dark/d_RectangularBase.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/SourceAssets~/Icons Dark/d_SizeBaseFromCenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/SourceAssets~/Icons Dark/d_SizeBaseFromCenter.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/SourceAssets~/Icons Dark/d_SizeBaseFromCorner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/SourceAssets~/Icons Dark/d_SizeBaseFromCorner.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/SourceAssets~/Icons Dark/d_SizeFromBottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/SourceAssets~/Icons Dark/d_SizeFromBottom.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/SourceAssets~/Icons Dark/d_SizeFromCenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/SourceAssets~/Icons Dark/d_SizeFromCenter.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/SourceAssets~/Icons Dark/d_SquareBase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/SourceAssets~/Icons Dark/d_SquareBase.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/SourceAssets~/Icons Light On/AutoHeight On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/SourceAssets~/Icons Light On/AutoHeight On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/SourceAssets~/Icons Light On/DragToHeight On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/SourceAssets~/Icons Light On/DragToHeight On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/SourceAssets~/Icons Light On/RectangularBase On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/SourceAssets~/Icons Light On/RectangularBase On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/SourceAssets~/Icons Light On/SizeBaseFromCenter On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/SourceAssets~/Icons Light On/SizeBaseFromCenter On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/SourceAssets~/Icons Light On/SizeBaseFromCorner On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/SourceAssets~/Icons Light On/SizeBaseFromCorner On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/SourceAssets~/Icons Light On/SizeFromBottom On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/SourceAssets~/Icons Light On/SizeFromBottom On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/SourceAssets~/Icons Light On/SizeFromCenter On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/SourceAssets~/Icons Light On/SizeFromCenter On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/SourceAssets~/Icons Light On/SquareBase On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/SourceAssets~/Icons Light On/SquareBase On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/SourceAssets~/Icons Light/AutoHeight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/SourceAssets~/Icons Light/AutoHeight.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/SourceAssets~/Icons Light/DragToHeight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/SourceAssets~/Icons Light/DragToHeight.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/SourceAssets~/Icons Light/RectangularBase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/SourceAssets~/Icons Light/RectangularBase.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/SourceAssets~/Icons Light/SizeBaseFromCenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/SourceAssets~/Icons Light/SizeBaseFromCenter.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/SourceAssets~/Icons Light/SizeBaseFromCorner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/SourceAssets~/Icons Light/SizeBaseFromCorner.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/SourceAssets~/Icons Light/SizeFromBottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/SourceAssets~/Icons Light/SizeFromBottom.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/SourceAssets~/Icons Light/SizeFromCenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/SourceAssets~/Icons Light/SizeFromCenter.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/SourceAssets~/Icons Light/SquareBase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/SourceAssets~/Icons Light/SquareBase.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/SourceAssets~/Light On.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/SourceAssets~/Light On.pdn -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/SourceAssets~/Light.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/SourceAssets~/Light.pdn -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/SourceAssets~/SourceShapes.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/3d615fffbe785f77f34973a50703dcde8ff43986/Packages/com.chisel.unity.editor/SourceAssets~/SourceShapes.pdn -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a140ce8fd182d94b9d425830abe1441 3 | PackageManifestImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2023.2.20f1 2 | m_EditorVersionWithRevision: 2023.2.20f1 (0e25a174756c) 3 | --------------------------------------------------------------------------------