Search the Community
Showing results for tags 'icon'.
-
I made 16 designs for icons on trajectories. Note that they're just supposed to represent roughly how it would look, it's not the actual look... For example, if you're looking for KSP1-style icons, you're probably looking for 1 - Above Full Arrow, even if it looks a bit different. 1 - Above Full Arrow 2 - Below Full Arrow 3 - Above Alpha Arrow 4 - Below Alpha Arrow 5 - Above Full Dot 6 - Below Full Dot 7 - Above Alpha Dot 8 - Below Alpha Dot 9 - Dotless Line 10 - Inline Dotless Line 11 - Line 12 - Inline Line 13 - Above Pointer 14 - Below Pointer 15 - Above Crosshair 16 - Below Crosshair Made with GIMP, although the trajectory [blue line] was made in Inkscape, then converted to png. Images were firther converted to gif format using ImageMagick-ims6.q16's onvert command.
- 3 replies
-
- 4
-
- trajectory
- icon
-
(and 1 more)
Tagged with:
-
Problem with icon/screen
SKEGGIA_27 posted a topic in KSP1 Technical Support (PC, unmodded installs)
Hi, I bought the game yesterday and I have a problem! When I start the game, the game works normally, but the game screen remains small, does not fill the whole screen, I tried to enlarge the icon with the "square" in the upper right corner but does not work. HELP please!!! -
I have some of the launching structure debris with a lot of fuel tanks and engines ejected that happens a few high-gain direct antennas on it, it is completely uncontrollable, comlpetely devoid if electricity, but some fuel tanks are not empty completely. It is obviously not connected to KSC. But the system thinks it's a relay satellite. EDIT: I think this is the wrong forum, shouldn't bug stuff go into Suggestions and Development ? None of the forums has the kind of description suitable for bug reporting, I'm totally confused.
-
(pinging @DMagic for comments as he clearly has extensive knowledge on icons like this post) More particularly, I am trying to colorize a vessel's map icon in the tracking station or mapview scene. Here're the codes below that I got to work but... //You should be able to use MonoBehaviour to run the codes related to MapNode during Update() public class CNCCommNetUI : CommNetUI { MapObject m_MapObject; public CNCCommNetUI() { base.colorHigh = new Color(0f, 0f, 1f, 1f); // blue connections } protected override void Start() { base.Start(); GameEvents.onPlanetariumTargetChanged.Add(OnPlanetariumTargetChanged); } protected override void UpdateDisplay() { base.UpdateDisplay(); //attempt to access vessel's map sprite //m_MapObject is of MapObject class, obtained from 'private void OnPlanetariumTargetChanged(MapObject mapObject)' MapNode mn = m_MapObject.uiNode; MapNode new_mn = MapNode.Create(mn.mapObject, new Color(0f, 0f, 1f, 1f), 512, mn.Interactable, mn.Pinnable, mn.InputBlocking); // try to colorise the grey icon as blue m_MapObject.uiNode = new_mn; } private void OnPlanetariumTargetChanged(MapObject mapObject) { if (mapObject == null) { return; } switch (mapObject.type) { case MapObject.ObjectType.Vessel: CNCLog.Debug("OnPlanetariumTargetChanged: Vessel: " + mapObject.vessel.vesselName); m_MapObject = mapObject; break; } } } The relay icon somehow turns into the different icon of an unknown type (generic?), and remains un-colorised. The MapNode class (decompiled by VS's ILSpy addon) has a confusing maze of methods like NodeUpdate(), Terminate() etc. Does anyone know how to solve this puzzling question?