private void mapLabels(int id)
        {
            //Draw the orbit overlays
            if (showOrbit && v != null)
            {
                SCANuiUtil.drawOrbit(TextureRect, spotmap, v, spotmap.Body);
            }

            SCANuiUtil.drawMapLabels(TextureRect, v, spotmap, data, spotmap.Body, showAnomaly, showWaypoints);
        }
示例#2
0
        //Draw the map overlay labels
        private void mapLabels(int id)
        {
            bool showWaypoints = false;

            if (waypoints)
            {
                showWaypoints = SCANcontroller.controller.map_waypoints;
            }

            SCANuiUtil.drawMapLabels(TextureRect, v, bigmap, data, bigmap.Body, SCANcontroller.controller.map_markers, showWaypoints);
        }
示例#3
0
 //Draw the map overlay labels
 private void mapLabels(int id)
 {
     SCANuiUtil.drawMapLabels(TextureRect, v, bigmap, data, bigmap.Body, SCANcontroller.controller.map_markers, SCANcontroller.controller.map_waypoints);
 }