
Interactive radar/spider-chart inspector controls for Unity, featuring both single-handle and multi-handle modes with full undo support.Radar Chart Inspector is fully compatible with all Unity render pipelines: Built-in Render Pipeline (BRP), Universal Render Pipeline (URP), and High Definition Render Pipeline (HDRP). No custom shaders or materials are used.OverviewThis release introduces two core data types:SingleHandleData — dual-label diameters with a shared central handleMultiHandleData — independent radial handles, one per axisEach is paired with a custom property drawer:SingleHandleDrawerMultiHandleDrawerThese drawers render fully interactive radar charts directly in the Unity Inspector, with:Real-time handle manipulation via drag-and-dropVisual feedback and editable valuesCustomizable appearance through [RadarChartDrawSettings]Demo IncludedA sample component (RadarChartDemo2) demonstrates how to:Control a target GameObject’s position (XY) using SingleHandleDataControl its color (RGB) using MultiHandleDataNo custom editor code is required—just annotate your fields with attributes and go.Runtime ClassesSingleHandleData: dual-label diameters with shared central handle and averaged valueMultiHandleData: independent radial handles, one per axisRadarStat & RadarSliderGroup: core serializable data structures for stat values and axis labelingEditor DrawersSingleHandleDrawer: interactive chart with filled polygon and central draggable handleMultiHandleDrawer: radial chart with independent handles per axis, draggable from the inspectorBoth derive from RadarChartBaseDrawer for shared layout, chart size, color, and label logicCustomization[RadarChartDrawSettings]: configure alignment, fill/line/label/handle colors using presets or hex[RadarChartSetup(...)]: define axis names and optional label pairs (e.g., "X:X-:X+") FeaturesHandles support drag-and-drop editing with real-time feedbackFull Undo/Redo integration via Undo.RecordObjectCharts are foldable in the inspector using standard Unity foldout controlsAutomatic reinitialization of chart data on validate using RadarComponentBaseIncludes demo script (RadarChartDemo2) to showcase color (RGB) and position (XY) control workflows with minimal setup