Welcome! Log In Create A New Profile

Advanced

Jul 7, 2020 build 217

Posted by Jaewon 
Jul 7, 2020 build 217
July 07, 2020 01:09PM
* Changes in NIMH MonkeyLogic 2 (Jul 21, 2020)

+ The DragAndDrop adapter now supports multiple drop locations.

- Bug fix in XAudio sound playback


* Changes in NIMH MonkeyLogic 2 (Jul 7, 2020)

+ MGL can change the z-order of graphic objects with the "zorder" property.
An object with a zero z-order is shown in the back and the one with a higher
z-order is presented in front of others that have lower z-order numbers.
If the z-order of two objects are the same, the one created earlier is drawn
on top of the other.
The z-order of TaskObjects or graphic adapters can be changed as below.

TaskObject(3).Zorder = 1; % change the z-order of TaskObject#3
TaskObject.Zorder(3) = 1; % the same as above line

box = BoxGraphic(null_);
box.Zorder = 1; % all graphic adapters have the Zorder property now.
box.Zorder(2) = 1; % in case there are multiple objects in one adapter.

+ A new adapter, PropertyMonitor, is added.
https://monkeylogic.nimh.nih.gov/docs_RuntimeFunctions.html#PropertyMonitor

The National Institute of Mental Health (NIMH) is part of the National Institutes of Health (NIH), a component of the U.S. Department of Health and Human Services.