├── .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 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/Sample Scene.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Assets/Sample Scene.meta -------------------------------------------------------------------------------- /Assets/Sample Scene/sample scene.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Assets/Sample Scene/sample scene.meta -------------------------------------------------------------------------------- /Assets/Sample Scene/sample scene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Assets/Sample Scene/sample scene.unity -------------------------------------------------------------------------------- /Assets/Sample Scene/sample scene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Assets/Sample Scene/sample scene.unity.meta -------------------------------------------------------------------------------- /Assets/Sample Scene/sample scene/lava.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Assets/Sample Scene/sample scene/lava.mat -------------------------------------------------------------------------------- /Assets/Sample Scene/sample scene/lava.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Assets/Sample Scene/sample scene/lava.mat.meta -------------------------------------------------------------------------------- /Assets/Sample Scene/sample scene/lava_backdrop.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Assets/Sample Scene/sample scene/lava_backdrop.mat -------------------------------------------------------------------------------- /Assets/Sample Scene/sample scene/lava_backdrop.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Assets/Sample Scene/sample scene/lava_backdrop.mat.meta -------------------------------------------------------------------------------- /Assets/Sample Scene/sample scene/simple-skybox.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Assets/Sample Scene/sample scene/simple-skybox.mat -------------------------------------------------------------------------------- /Assets/Sample Scene/sample scene/simple-skybox.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Assets/Sample Scene/sample scene/simple-skybox.mat.meta -------------------------------------------------------------------------------- /Assets/Sample Scene/sample sceneSettings.lighting: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Assets/Sample Scene/sample sceneSettings.lighting -------------------------------------------------------------------------------- /Assets/Sample Scene/sample sceneSettings.lighting.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Assets/Sample Scene/sample sceneSettings.lighting.meta -------------------------------------------------------------------------------- /Assets/Test cases.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Assets/Test cases.meta -------------------------------------------------------------------------------- /Assets/Test cases/test_case_1.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Assets/Test cases/test_case_1.unity -------------------------------------------------------------------------------- /Assets/Test cases/test_case_1.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Assets/Test cases/test_case_1.unity.meta -------------------------------------------------------------------------------- /Assets/Test cases/test_case_10.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Assets/Test cases/test_case_10.unity -------------------------------------------------------------------------------- /Assets/Test cases/test_case_10.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Assets/Test cases/test_case_10.unity.meta -------------------------------------------------------------------------------- /Assets/Test cases/test_case_11.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Assets/Test cases/test_case_11.unity -------------------------------------------------------------------------------- /Assets/Test cases/test_case_11.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Assets/Test cases/test_case_11.unity.meta -------------------------------------------------------------------------------- /Assets/Test cases/test_case_12.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Assets/Test cases/test_case_12.unity -------------------------------------------------------------------------------- /Assets/Test cases/test_case_12.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Assets/Test cases/test_case_12.unity.meta -------------------------------------------------------------------------------- /Assets/Test cases/test_case_13.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Assets/Test cases/test_case_13.unity -------------------------------------------------------------------------------- /Assets/Test cases/test_case_13.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Assets/Test cases/test_case_13.unity.meta -------------------------------------------------------------------------------- /Assets/Test cases/test_case_14.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Assets/Test cases/test_case_14.unity -------------------------------------------------------------------------------- /Assets/Test cases/test_case_14.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Assets/Test cases/test_case_14.unity.meta -------------------------------------------------------------------------------- /Assets/Test cases/test_case_15.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Assets/Test cases/test_case_15.unity -------------------------------------------------------------------------------- /Assets/Test cases/test_case_15.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Assets/Test cases/test_case_15.unity.meta -------------------------------------------------------------------------------- /Assets/Test cases/test_case_16.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Assets/Test cases/test_case_16.unity -------------------------------------------------------------------------------- /Assets/Test cases/test_case_16.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Assets/Test cases/test_case_16.unity.meta -------------------------------------------------------------------------------- /Assets/Test cases/test_case_17.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Assets/Test cases/test_case_17.unity -------------------------------------------------------------------------------- /Assets/Test cases/test_case_17.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Assets/Test cases/test_case_17.unity.meta -------------------------------------------------------------------------------- /Assets/Test cases/test_case_18.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Assets/Test cases/test_case_18.unity -------------------------------------------------------------------------------- /Assets/Test cases/test_case_18.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Assets/Test cases/test_case_18.unity.meta -------------------------------------------------------------------------------- /Assets/Test cases/test_case_19.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Assets/Test cases/test_case_19.unity -------------------------------------------------------------------------------- /Assets/Test cases/test_case_19.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Assets/Test cases/test_case_19.unity.meta -------------------------------------------------------------------------------- /Assets/Test cases/test_case_2.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Assets/Test cases/test_case_2.unity -------------------------------------------------------------------------------- /Assets/Test cases/test_case_2.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Assets/Test cases/test_case_2.unity.meta -------------------------------------------------------------------------------- /Assets/Test cases/test_case_20.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Assets/Test cases/test_case_20.unity -------------------------------------------------------------------------------- /Assets/Test cases/test_case_20.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Assets/Test cases/test_case_20.unity.meta -------------------------------------------------------------------------------- /Assets/Test cases/test_case_21.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Assets/Test cases/test_case_21.unity -------------------------------------------------------------------------------- /Assets/Test cases/test_case_21.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Assets/Test cases/test_case_21.unity.meta -------------------------------------------------------------------------------- /Assets/Test cases/test_case_3.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Assets/Test cases/test_case_3.unity -------------------------------------------------------------------------------- /Assets/Test cases/test_case_3.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Assets/Test cases/test_case_3.unity.meta -------------------------------------------------------------------------------- /Assets/Test cases/test_case_4.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Assets/Test cases/test_case_4.unity -------------------------------------------------------------------------------- /Assets/Test cases/test_case_4.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Assets/Test cases/test_case_4.unity.meta -------------------------------------------------------------------------------- /Assets/Test cases/test_case_5.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Assets/Test cases/test_case_5.unity -------------------------------------------------------------------------------- /Assets/Test cases/test_case_5.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Assets/Test cases/test_case_5.unity.meta -------------------------------------------------------------------------------- /Assets/Test cases/test_case_6.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Assets/Test cases/test_case_6.unity -------------------------------------------------------------------------------- /Assets/Test cases/test_case_6.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Assets/Test cases/test_case_6.unity.meta -------------------------------------------------------------------------------- /Assets/Test cases/test_case_7.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Assets/Test cases/test_case_7.unity -------------------------------------------------------------------------------- /Assets/Test cases/test_case_7.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Assets/Test cases/test_case_7.unity.meta -------------------------------------------------------------------------------- /Assets/Test cases/test_case_8.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Assets/Test cases/test_case_8.unity -------------------------------------------------------------------------------- /Assets/Test cases/test_case_8.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Assets/Test cases/test_case_8.unity.meta -------------------------------------------------------------------------------- /Assets/Test cases/test_case_9.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Assets/Test cases/test_case_9.unity -------------------------------------------------------------------------------- /Assets/Test cases/test_case_9.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Assets/Test cases/test_case_9.unity.meta -------------------------------------------------------------------------------- /Documentation/Images/active_model.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Documentation/Images/active_model.gif -------------------------------------------------------------------------------- /Documentation/Images/box_options.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Documentation/Images/box_options.PNG -------------------------------------------------------------------------------- /Documentation/Images/brush_editing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Documentation/Images/brush_editing.gif -------------------------------------------------------------------------------- /Documentation/Images/chisel_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Documentation/Images/chisel_example.png -------------------------------------------------------------------------------- /Documentation/Images/convert_to_brush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Documentation/Images/convert_to_brush.png -------------------------------------------------------------------------------- /Documentation/Images/csg_operations.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Documentation/Images/csg_operations.gif -------------------------------------------------------------------------------- /Documentation/Images/generator_operations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Documentation/Images/generator_operations.png -------------------------------------------------------------------------------- /Documentation/Images/hierarchy_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Documentation/Images/hierarchy_model.png -------------------------------------------------------------------------------- /Documentation/Images/select_create_tool.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Documentation/Images/select_create_tool.gif -------------------------------------------------------------------------------- /Documentation/Images/stairs_generator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Documentation/Images/stairs_generator.gif -------------------------------------------------------------------------------- /Documentation/Images/tool_window_create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Documentation/Images/tool_window_create.png -------------------------------------------------------------------------------- /GettingStarted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/GettingStarted.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Packages/com.chisel.core/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/CHANGELOG.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/CHANGELOG.md.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/BrushMesh.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/BrushMesh.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/BrushMesh/BrushMesh.Internal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/BrushMesh/BrushMesh.Internal.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/BrushMesh/BrushMesh.Optimize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/BrushMesh/BrushMesh.Optimize.cs -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/BrushMesh/BrushMesh.Utility.cs -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/BrushMesh/BrushMesh.Validate.cs -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/BrushMesh/BrushMesh.cs -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/BrushMesh/BrushMeshBlob.internal.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/BrushMesh/BrushMeshInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/BrushMesh/BrushMeshInstance.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/BrushMesh/BrushMeshInstance.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/BrushMesh/BrushMeshInstance.cs.meta -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/CompactHierarchy.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/GeneratorBase.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/GeneratorBase.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/GeneratorBase/ChiselCurve2DBlob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/GeneratorBase/ChiselCurve2DBlob.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/GeneratorBase/ChiselPathBlob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/GeneratorBase/ChiselPathBlob.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/GeneratorBase/DataStructures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/GeneratorBase/DataStructures.meta -------------------------------------------------------------------------------- /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/GeneratorJobPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/GeneratorBase/GeneratorJobPool.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/GeneratorBase/Placement.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/GeneratorBase/Placement.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/GeneratorBase/Placement/Axis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/GeneratorBase/Placement/Axis.cs -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/Generators.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Generators/Box.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/Generators/Box.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Generators/Brush.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/Generators/Brush.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Generators/Capsule.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/Generators/Capsule.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Generators/Cylinder.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/Generators/Cylinder.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Generators/ExtrudedShape.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/Generators/ExtrudedShape.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Generators/Hemisphere.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/Generators/Hemisphere.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Generators/LinearStairs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/Generators/LinearStairs.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Generators/PathedStairs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/Generators/PathedStairs.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Generators/RevolvedShape.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/Generators/RevolvedShape.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Generators/Sphere.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/Generators/Sphere.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Generators/SpiralStairs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/Generators/SpiralStairs.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Generators/Stadium.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/Generators/Stadium.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Generators/Torus.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/Generators/Torus.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Managers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/Managers.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Managers/ChiselDefaultMaterials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/Managers/ChiselDefaultMaterials.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Managers/ChiselMaterialManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/Managers/ChiselMaterialManager.cs -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/Nodes.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Nodes/CSGOperationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/Nodes/CSGOperationType.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Nodes/CSGOperationType.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/Nodes/CSGOperationType.cs.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Nodes/CSGTree.Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/Nodes/CSGTree.Extensions.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Nodes/CSGTree.Extensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/Nodes/CSGTree.Extensions.cs.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Nodes/CSGTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/Nodes/CSGTree.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Nodes/CSGTree.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/Nodes/CSGTree.cs.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Nodes/CSGTreeBranch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/Nodes/CSGTreeBranch.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Nodes/CSGTreeBranch.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/Nodes/CSGTreeBranch.cs.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Nodes/CSGTreeBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/Nodes/CSGTreeBrush.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Nodes/CSGTreeBrush.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/Nodes/CSGTreeBrush.cs.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Nodes/CSGTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/Nodes/CSGTreeNode.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Nodes/CSGTreeNode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/Nodes/CSGTreeNode.cs.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/PropertyAttributes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/PropertyAttributes.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/PropertyAttributes/Conditional.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/PropertyAttributes/Conditional.cs -------------------------------------------------------------------------------- /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.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.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/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/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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/PropertyAttributes/UnitType.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/PropertyAttributes/UnitType.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/PropertyAttributes/UnitType.cs.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Surfaces.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/Surfaces.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Surfaces/ChiselSurface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/Surfaces/ChiselSurface.cs -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/Surfaces/ChiselSurfaceArray.cs -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/Surfaces/ChiselSurfaceMetadata.cs -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/Surfaces/InternalChiselSurface.cs -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/Surfaces/SurfaceDetails.cs -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/Surfaces/UVMatrix.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/1.Input/Surfaces/UVMatrix.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/1.Input/Surfaces/UVMatrix.cs.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/2.Processing.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/CSGConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/2.Processing/CSGConstants.cs -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/2.Processing/Cache.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Cache/ChiselLookup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/2.Processing/Cache/ChiselLookup.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Cache/ChiselLookup.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/2.Processing/Cache/ChiselLookup.cs.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Categorization.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/2.Processing/Categorization.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Categorization/RoutingTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/2.Processing/Categorization/RoutingTable.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Containers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/2.Processing/Containers.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Containers/HashedVertices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/2.Processing/Containers/HashedVertices.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Containers/IDManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/2.Processing/Containers/IDManager.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Containers/IDManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/2.Processing/Containers/IDManager.cs.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Containers/PointerReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/2.Processing/Containers/PointerReference.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Containers/SectionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/2.Processing/Containers/SectionManager.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/BuildCompactTreeJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/BuildCompactTreeJob.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/BuildLookupTablesJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/BuildLookupTablesJob.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/CacheRemappingJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/CacheRemappingJob.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/CacheRemappingJob.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/CacheRemappingJob.cs.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/CreateRoutingTableJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/CreateRoutingTableJob.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/FillVertexBuffersJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/FillVertexBuffersJob.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/FindBrushPairsJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/FindBrushPairsJob.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/FindBrushPairsJob.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/FindBrushPairsJob.cs.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/FindModifiedBrushesJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/FindModifiedBrushesJob.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/InvalidateBrushesJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/InvalidateBrushesJob.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/JobData.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/JobData.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/JobData/BrushTreeMesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/JobData/BrushTreeMesh.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/JobData/CompactTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/JobData/CompactTree.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/JobData/IndexOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/JobData/IndexOrder.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/PerformCSGJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/PerformCSGJob.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/PerformCSGJob.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/PerformCSGJob.cs.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/StoreToCacheJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/StoreToCacheJob.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/StoreToCacheJob.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/StoreToCacheJob.cs.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/UpdateBrushMeshIDsJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/UpdateBrushMeshIDsJob.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/UpdateBrushOutlineJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/2.Processing/Jobs/UpdateBrushOutlineJob.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Managers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/2.Processing/Managers.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Managers/CompactTreeBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/2.Processing/Managers/CompactTreeBuilder.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Managers/Decomposition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/2.Processing/Managers/Decomposition.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Managers/Decomposition.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/2.Processing/Managers/Decomposition.cs.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Thirdparty.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/2.Processing/Thirdparty.meta -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/2.Processing/Thirdparty/Poly2Tri.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/2.Processing/Thirdparty/Poly2Tri/DTSweep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/2.Processing/Thirdparty/Poly2Tri/DTSweep.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/3.Output.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/3.Output.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/3.Output/Query.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/3.Output/Query.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/3.Output/Query/CSGQueryManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/3.Output/Query/CSGQueryManager.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/3.Output/Query/CSGQueryManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/3.Output/Query/CSGQueryManager.cs.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/3.Output/Query/CSGTreeBrushIntersection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/3.Output/Query/CSGTreeBrushIntersection.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/3.Output/Query/ChiselSurfaceIntersection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/3.Output/Query/ChiselSurfaceIntersection.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/3.Output/Query/FinishMeshUpdateDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/3.Output/Query/FinishMeshUpdateDelegate.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/3.Output/Query/GeneratedMeshContents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/3.Output/Query/GeneratedMeshContents.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/3.Output/Query/GeneratedMeshDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/3.Output/Query/GeneratedMeshDescription.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/3.Output/Query/MeshQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/3.Output/Query/MeshQuery.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/3.Output/Query/MeshQuery.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/3.Output/Query/MeshQuery.cs.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/3.Output/Query/VertexBufferContents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/3.Output/Query/VertexBufferContents.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/3.Output/Query/VertexBufferContents.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/3.Output/Query/VertexBufferContents.cs.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/3.Output/Query/VertexChannelFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/3.Output/Query/VertexChannelFlags.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/3.Output/Query/VertexChannelFlags.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/3.Output/Query/VertexChannelFlags.cs.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/3.Output/Wireframe.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/3.Output/Wireframe.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/3.Output/Wireframe/BurstOutline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/3.Output/Wireframe/BurstOutline.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/3.Output/Wireframe/BurstOutline.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/3.Output/Wireframe/BurstOutline.cs.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/3.Output/Wireframe/ChiselWireframe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/3.Output/Wireframe/ChiselWireframe.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/3.Output/Wireframe/ChiselWireframe.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/3.Output/Wireframe/ChiselWireframe.cs.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/ExtensionMethods.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/ExtensionMethods.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/ExtensionMethods/BlobArrayExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/ExtensionMethods/BlobArrayExtensions.cs -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/ExtensionMethods/BlobBuilderExtensions.cs -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/ExtensionMethods/BoundsExtensions.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/ExtensionMethods/BoundsExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/ExtensionMethods/BoundsExtensions.cs.meta -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/ExtensionMethods/HashExtensions.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/ExtensionMethods/HashExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/ExtensionMethods/HashExtensions.cs.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/ExtensionMethods/JobExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/ExtensionMethods/JobExtensions.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/ExtensionMethods/JobExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/ExtensionMethods/JobExtensions.cs.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/ExtensionMethods/JobHandleExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/ExtensionMethods/JobHandleExtensions.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/ExtensionMethods/MathExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/ExtensionMethods/MathExtensions.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/ExtensionMethods/MathExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/ExtensionMethods/MathExtensions.cs.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/ExtensionMethods/NativeCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/ExtensionMethods/NativeCollection.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/ExtensionMethods/NativeCollection.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/ExtensionMethods/NativeCollection.cs.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/ExtensionMethods/NativeCollectionHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/ExtensionMethods/NativeCollectionHelpers.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/ExtensionMethods/NativeListExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/ExtensionMethods/NativeListExtensions.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/ExtensionMethods/NativeStreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/ExtensionMethods/NativeStreamExtensions.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/ExtensionMethods/PlaneExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/ExtensionMethods/PlaneExtensions.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/ExtensionMethods/PlaneExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/ExtensionMethods/PlaneExtensions.cs.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/ExtensionMethods/SystemHashSetExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/ExtensionMethods/SystemHashSetExtensions.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/ExtensionMethods/SystemHashSetExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11e5ff4030129aa4fb79f2dbff840cf6 -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/assembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/assembly.cs -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/assembly.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/assembly.cs.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/com.chisel.core.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/com.chisel.core.asmdef -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Core/com.chisel.core.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Core/com.chisel.core.asmdef.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Package Resources.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/CastShadows.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Package Resources/CastShadows.mat -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/CastShadows.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Package Resources/CastShadows.mat.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/CastShadows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Package Resources/CastShadows.png -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/CastShadows.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Package Resources/CastShadows.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/Collider.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Package Resources/Collider.mat -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/Collider.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Package Resources/Collider.mat.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/Collider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Package Resources/Collider.png -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/Collider.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Package Resources/Collider.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/Culled.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Package Resources/Culled.mat -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/Culled.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Package Resources/Culled.mat.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/Culled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Package Resources/Culled.png -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/Culled.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Package Resources/Culled.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/Discarded.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Package Resources/Discarded.mat -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/Discarded.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Package Resources/Discarded.mat.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/Discarded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Package Resources/Discarded.png -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/Discarded.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Package Resources/Discarded.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/Floor.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Package Resources/Floor.mat -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/Floor.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Package Resources/Floor.mat.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/Floor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Package Resources/Floor.png -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/Floor.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Package Resources/Floor.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/Invisible.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Package Resources/Invisible.mat -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/Invisible.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Package Resources/Invisible.mat.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/Invisible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Package Resources/Invisible.png -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/Invisible.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Package Resources/Invisible.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/ReceiveShadows.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Package Resources/ReceiveShadows.mat -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/ReceiveShadows.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Package Resources/ReceiveShadows.mat.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/ReceiveShadows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Package Resources/ReceiveShadows.png -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/ReceiveShadows.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Package Resources/ReceiveShadows.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/ShadowOnly.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Package Resources/ShadowOnly.mat -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/ShadowOnly.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Package Resources/ShadowOnly.mat.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/ShadowOnly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Package Resources/ShadowOnly.png -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/ShadowOnly.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Package Resources/ShadowOnly.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/Step.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Package Resources/Step.mat -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/Step.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Package Resources/Step.mat.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/Step.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Package Resources/Step.png -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/Step.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Package Resources/Step.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/Tread.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Package Resources/Tread.mat -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/Tread.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Package Resources/Tread.mat.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/Tread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Package Resources/Tread.png -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/Tread.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Package Resources/Tread.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/Trigger.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Package Resources/Trigger.mat -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/Trigger.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Package Resources/Trigger.mat.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/Trigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Package Resources/Trigger.png -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/Trigger.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Package Resources/Trigger.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/Wall.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Package Resources/Wall.mat -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/Wall.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Package Resources/Wall.mat.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/Wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Package Resources/Wall.png -------------------------------------------------------------------------------- /Packages/com.chisel.core/Chisel/Package Resources/Wall.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/Chisel/Package Resources/Wall.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/LICENSE.md -------------------------------------------------------------------------------- /Packages/com.chisel.core/LICENSE.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/LICENSE.md.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Packages/com.chisel.core/README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/README.md.meta -------------------------------------------------------------------------------- /Packages/com.chisel.core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/package.json -------------------------------------------------------------------------------- /Packages/com.chisel.core/package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.core/package.json.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.components/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.components/CHANGELOG.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.components/CHANGELOG.md.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.components/Chisel.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.components/Chisel.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.components/Chisel/Components.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.components/Chisel/Components.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.components/Chisel/Components/Components.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.components/Chisel/Components/Components.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.components/Chisel/Components/Components/Base.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.components/Chisel/Components/Components/Base.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.components/Chisel/Components/Components/Generated.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.components/Chisel/Components/Components/Generated.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.components/Chisel/Components/Components/Modifiers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.components/Chisel/Components/Components/Modifiers.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.components/Chisel/Components/ExtensionMethods.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.components/Chisel/Components/ExtensionMethods.meta -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.components/Chisel/Components/Managers.meta -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.components/Chisel/Components/Query.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.components/Chisel/Components/Query/ChiselSceneQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.components/Chisel/Components/Query/ChiselSceneQuery.cs -------------------------------------------------------------------------------- /Packages/com.chisel.unity.components/Chisel/Components/Query/Frustum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.components/Chisel/Components/Query/Frustum.cs -------------------------------------------------------------------------------- /Packages/com.chisel.unity.components/Chisel/Components/Query/Frustum.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.components/Chisel/Components/Query/Frustum.cs.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.components/Chisel/Components/Query/SurfaceReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.components/Chisel/Components/Query/SurfaceReference.cs -------------------------------------------------------------------------------- /Packages/com.chisel.unity.components/Chisel/Components/Utility.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.components/Chisel/Components/Utility.meta -------------------------------------------------------------------------------- /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/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.components/LICENSE.md -------------------------------------------------------------------------------- /Packages/com.chisel.unity.components/LICENSE.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.components/LICENSE.md.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.components/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.components/README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.components/README.md.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.components/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.components/package.json -------------------------------------------------------------------------------- /Packages/com.chisel.unity.components/package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.components/package.json.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/CHANGELOG.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/CHANGELOG.md.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Chisel.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Chisel/Editor.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/ChiselUnityEventsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Chisel/Editor/ChiselUnityEventsManager.cs -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/ChiselUnityEventsManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Chisel/Editor/ChiselUnityEventsManager.cs.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/ComponentEditors.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Chisel/Editor/ComponentEditors.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/ComponentEditors/Base.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Chisel/Editor/ComponentEditors/Base.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/ComponentEditors/Containers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Chisel/Editor/ComponentEditors/Containers.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/ComponentEditors/Generators.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Chisel/Editor/ComponentEditors/Generators.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/ComponentEditors/Modifiers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Chisel/Editor/ComponentEditors/Modifiers.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/DebugHelpers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Chisel/Editor/DebugHelpers.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/DebugHelpers/HistoryView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Chisel/Editor/DebugHelpers/HistoryView.cs -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/DebugHelpers/HistoryView.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Chisel/Editor/DebugHelpers/HistoryView.cs.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/DragAndDrop.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Chisel/Editor/DragAndDrop.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/EditorTools.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Chisel/Editor/EditorTools.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/EditorTools/ChiselEditToolBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Chisel/Editor/EditorTools/ChiselEditToolBase.cs -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/EditorTools/ChiselUVMoveTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Chisel/Editor/EditorTools/ChiselUVMoveTool.cs -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/EditorTools/ChiselUVRotateTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Chisel/Editor/EditorTools/ChiselUVRotateTool.cs -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/EditorTools/ChiselUVScaleTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Chisel/Editor/EditorTools/ChiselUVScaleTool.cs -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/EditorTools/ChiselUVToolCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Chisel/Editor/EditorTools/ChiselUVToolCommon.cs -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/EditorTools/IChiselToolNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Chisel/Editor/EditorTools/IChiselToolNode.cs -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/ExtensionMethods.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Chisel/Editor/ExtensionMethods.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/Hierarchy.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Chisel/Editor/Hierarchy.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/Keyboard.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Chisel/Editor/Keyboard.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/PropertyDrawers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Chisel/Editor/PropertyDrawers.meta -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Chisel/Editor/SceneView.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/ChiselDrawModes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/ChiselDrawModes.cs -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/ChiselDrawModes.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/ChiselDrawModes.cs.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/ChiselEditorHandles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/ChiselEditorHandles.cs -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/ChiselSceneGUIStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/ChiselSceneGUIStyle.cs -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/Handles.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/Handles.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/Handles/PointDrawing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/Handles/PointDrawing.cs -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/Handles/TurnHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/Handles/TurnHandle.cs -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/Measurements.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/Measurements.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/Overlays.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/Overlays.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/SceneHandles.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/SceneHandles.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/Selection.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/Selection.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/Snapping.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/Snapping.meta -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/Units.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/Units/Units.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/Units/Units.cs -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/Units/Units.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/Units/Units.cs.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/Utilities.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/Utilities.meta -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Chisel/Editor/SceneView/Visualization.meta -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Chisel/Editor/Settings.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/Settings/ChiselEditorSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Chisel/Editor/Settings/ChiselEditorSettings.cs -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/Settings/ChiselGridSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Chisel/Editor/Settings/ChiselGridSettings.cs -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/SurfaceEditors.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Chisel/Editor/SurfaceEditors.meta -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Chisel/Editor/com.chisel.editor.asmdef -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Chisel/Editor/com.chisel.editor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Chisel/Editor/com.chisel.editor.asmdef.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/AutoHeight On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/AutoHeight On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/AutoHeight On.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/AutoHeight On.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/AutoHeight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/AutoHeight.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/AutoHeight.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/AutoHeight.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/BoundsSnap ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/BoundsSnap ON.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/BoundsSnap ON.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/BoundsSnap ON.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/BoundsSnap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/BoundsSnap.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/BoundsSnap.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/BoundsSnap.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/DragToHeight On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/DragToHeight On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/DragToHeight On.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/DragToHeight On.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/DragToHeight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/DragToHeight.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/DragToHeight.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/DragToHeight.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/EdgeSnap ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/EdgeSnap ON.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/EdgeSnap ON.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/EdgeSnap ON.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/EdgeSnap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/EdgeSnap.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/EdgeSnap.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/EdgeSnap.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/Pivot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/Pivot.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/Pivot.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/Pivot.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/PivotSnap ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/PivotSnap ON.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/PivotSnap ON.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/PivotSnap ON.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/PivotSnap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/PivotSnap.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/PivotSnap.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/PivotSnap.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/RectangularBase On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/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/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/RectangularBase.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/RectangularBase.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/RectangularBase.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/SizeBaseFromCenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/SizeBaseFromCenter.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/SizeBaseFromCorner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/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/HEAD/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/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/SizeFromBottom.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/SizeFromBottom.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/SizeFromBottom.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/SizeFromCenter On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/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/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/SizeFromCenter.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/SizeFromCenter.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/SizeFromCenter.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/SquareBase On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/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/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/SquareBase.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/SquareBase.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/SquareBase.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/SurfaceSnap ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/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/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/SurfaceSnap.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/SurfaceSnap.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/SurfaceSnap.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/UVEdgeSnap ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/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/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/UVEdgeSnap.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/UVEdgeSnap.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/UVEdgeSnap.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/UVGridSnap ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/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/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/UVGridSnap.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/UVGridSnap.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/UVGridSnap.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/UVVertexSnap ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/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/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/UVVertexSnap.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/UVVertexSnap.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/UVVertexSnap.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/VertexSnap ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/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/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/VertexSnap.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/VertexSnap.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/VertexSnap.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/add.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/add.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/add.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/box.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/box.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/box.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/boxOutline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/boxOutline.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/boxOutline.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/boxOutline.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/boxSurfaces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/boxSurfaces.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/boxSurfaces.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/boxSurfaces.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/capsule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/capsule.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/capsule.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/capsule.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/centerPivotOnEach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/centerPivotOnEach.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/convertToBrush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/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/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_additive On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_additive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_additive.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_additive.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_additive.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_additive@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/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/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_copy On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_copy On.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_copy On.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_copy On@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/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/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_copy.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_copy.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_copy.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_intersecting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_intersecting.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_model.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_model.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_model.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_model@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_model@2x.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_model@2x.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_model@2x.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_subtractive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/csg_subtractive.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/cylinder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/cylinder.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/cylinder.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/cylinder.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_AutoHeight On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/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/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_AutoHeight.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_AutoHeight.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_AutoHeight.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_BoundsSnap ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/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/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_BoundsSnap.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_BoundsSnap.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_BoundsSnap.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_DragToHeight On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/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/HEAD/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/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_EdgeSnap.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_EdgeSnap.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_EdgeSnap.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_PivotSnap ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/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/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_PivotSnap.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_PivotSnap.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_PivotSnap.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_RectangularBase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_RectangularBase.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_SizeFromBottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_SizeFromBottom.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_SizeFromCenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/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/HEAD/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/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_SquareBase.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_SquareBase.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_SquareBase.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_SurfaceSnap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/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/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_UVEdgeSnap.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_UVEdgeSnap.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_UVEdgeSnap.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_UVGridSnap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_UVGridSnap.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_UVGridSnap.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_UVGridSnap.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_UVVertexSnap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/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/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_VertexSnap.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_VertexSnap.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_VertexSnap.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_add.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_add.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_add.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_boxSurfaces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_boxSurfaces.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_convertToBrush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/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/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_csg_additive On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_csg_additive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_csg_copy.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_csg_copy.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_csg_copy.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_csg_copy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_csg_copy@2x.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_csg_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_csg_model.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_csg_model.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_csg_model.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_csg_model@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_csg_model@2x.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_csg_subtractive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_csg_subtractive.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_edgeSnap On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/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/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_grid On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_grid On.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_grid On.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_grid.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_grid.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_grid.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_moveTool ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/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/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_moveTool.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_moveTool.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_moveTool.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_ol_minus On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/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/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_ol_minus.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_ol_minus.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_ol_minus.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_ol_plus On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_ol_plus On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_ol_plus On.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_ol_plus On.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_ol_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_ol_plus.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_ol_plus.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_ol_plus.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_pass_through On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/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/HEAD/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/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_pivot ON.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_pivot ON.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_pivot ON.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_pivot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_pivot.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_pivot.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_pivot.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_rebuild ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_rebuild ON.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_rebuild ON.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_rebuild ON.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_rebuild.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_rebuild.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_rebuild.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_rebuild.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_remove_behind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_rotateTool.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_rotateTool.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_rotateTool.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_scaleTool ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/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/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_scaleTool.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_scaleTool.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_scaleTool.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_shape edit ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/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/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_shape edit.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_shape edit.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_shape edit.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_snapping On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/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/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_snapping.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_snapping.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_snapping.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_split On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_split On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_split On.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_split On.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_split.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_split.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_split.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_split.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_surface rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_surface rotate.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_surface scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_surface scale.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_surfaceSnap On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/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/HEAD/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/HEAD/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/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_wireframe.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/d_wireframe.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/d_wireframe.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/free_draw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/free_draw.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/free_draw.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/free_draw.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/grid On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/grid On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/grid On.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/grid On.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/grid.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/grid.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/grid.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/hemisphere.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/hemisphere.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/hemisphere.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/hemisphere.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/linear_stairs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/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/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/moveTool On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/moveTool On.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/moveTool On.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/moveTool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/moveTool.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/moveTool.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/moveTool.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/ol_minus On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/ol_minus On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/ol_minus On.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/ol_minus On.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/ol_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/ol_minus.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/ol_minus.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/ol_minus.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/ol_plus On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/ol_plus On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/ol_plus On.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/ol_plus On.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/ol_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/ol_plus.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/ol_plus.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/ol_plus.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/pass_through On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/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/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/pass_through.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/pass_through.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/pass_through.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/pivot ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/pivot ON.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/pivot ON.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/pivot ON.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/rebuild ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/rebuild ON.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/rebuild ON.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/rebuild ON.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/rebuild.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/rebuild.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/rebuild.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/rebuild.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/remove_behind On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/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/HEAD/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/HEAD/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/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/remove_front.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/remove_front.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/remove_front.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/rotateTool ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/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/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/rotateTool.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/rotateTool.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/rotateTool.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/scaleTool ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/scaleTool ON.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/scaleTool ON.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/scaleTool ON.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/scaleTool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/scaleTool.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/scaleTool.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/scaleTool.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/shape edit ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/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/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/shape edit.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/shape edit.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/shape edit.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/snapping On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/snapping On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/snapping On.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/snapping On.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/snapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/snapping.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/snapping.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/snapping.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/sphere.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/sphere.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/sphere.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/sphere.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/spiral_stairs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/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/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/split On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/split On.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/split On.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/split.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/split.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/split.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/split.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/surface rotate ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/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/HEAD/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/HEAD/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/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/surface scale.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/surface translate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/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/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/warning.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/warning.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/warning.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/wireframe On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/wireframe On.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/wireframe On.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/wireframe On.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/wireframe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/wireframe.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Icons/wireframe.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Icons/wireframe.png.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Shaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Shaders.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Shaders/customDot.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Shaders/customDot.shader -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Shaders/grid.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Shaders/grid.shader -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/Editor Resources/Shaders/grid.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/Editor Resources/Shaders/grid.shader.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/LICENSE.md -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/LICENSE.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/LICENSE.md.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/README.md.meta -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/SourceAssets~/Dark On.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/SourceAssets~/Dark On.pdn -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/SourceAssets~/Dark.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/SourceAssets~/Dark.pdn -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/SourceAssets~/GenerateFrom.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/SourceAssets~/GenerateFrom.pdn -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/SourceAssets~/Icons Dark/d_AutoHeight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/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/HEAD/Packages/com.chisel.unity.editor/SourceAssets~/Icons Dark/d_DragToHeight.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/SourceAssets~/Icons Dark/d_SquareBase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/SourceAssets~/Icons Dark/d_SquareBase.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/SourceAssets~/Icons Light/AutoHeight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/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/HEAD/Packages/com.chisel.unity.editor/SourceAssets~/Icons Light/DragToHeight.png -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/SourceAssets~/Icons Light/SizeFromBottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/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/HEAD/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/HEAD/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/HEAD/Packages/com.chisel.unity.editor/SourceAssets~/Light On.pdn -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/SourceAssets~/Light.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/SourceAssets~/Light.pdn -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/SourceAssets~/SourceShapes.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/SourceAssets~/SourceShapes.pdn -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/package.json -------------------------------------------------------------------------------- /Packages/com.chisel.unity.editor/package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/com.chisel.unity.editor/package.json.meta -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/Packages/packages-lock.json -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadicalCSG/Chisel.Prototype/HEAD/README.md --------------------------------------------------------------------------------