Jump to content

DJackson

Member
  • Content Count

    2
  • Joined

  • Last visited

  • Medals

Community Reputation

10 Good

About DJackson

  • Rank
    Newbie
  1. DJackson

    Minimap UI display

    It seems to be treating the center as if it were still in the middle of the screen and the map were still full sized.
  2. DJackson

    Minimap UI display

    I've been working on basically the same thing but just using scripts and not resource files. I can create the map fine and still move my player without issues. But centering on my player isn't working. It is updating and moving as I move, just not with the center as my player. [] spawn { disableSerialization; _mmap = findDisplay 46 ctrlCreate ["RscMapControl", -420]; _mmap ctrlSetPosition [-0.6, 0.4, 0.4, 0.4]; _mmap ctrlCommit 0; while {true} do { _mmap ctrlMapAnimAdd [0, 0.05, player]; ctrlMapAnimCommit _mmap; }; };
×