hyperized "color/sprite AT location" reporter primitive

pull/95/head
jmoenig 2020-11-21 12:53:35 +01:00
rodzic ce0d2216e1
commit b27ed84aa6
2 zmienionych plików z 8 dodań i 0 usunięć

Wyświetl plik

@ -6,6 +6,7 @@
* added "loadProjectXML" method to the api
* hyperized "atrribute OF sprite" reporter primitive in the sensing category
* show the common attributes for sprites in the OF-dropdown by default
* hyperized "color/sprite AT location" reporter primitive
* **Documentation Updates:**
* API update for "loadProjectXML"
@ -15,6 +16,7 @@
* updated api documentation
* threads: hyperized "atrribute OF sprite" reporter primitive
* blocks: show the common attributes for sprites in the OF-dropdown by default
* threads: hyperized "color/sprite AT location" reporter primitive
## 6.3.6
* **Notable Changes:**

Wyświetl plik

@ -4552,6 +4552,12 @@ Process.prototype.reportAspect = function (aspect, location) {
// below themselves, not their own color and not colors in sprites above
// their own layer.
if (this.enableHyperOps) {
if (location instanceof List && !this.isCoordinate(location)) {
return location.map(each => this.reportAspect(aspect, each));
}
}
var choice = this.inputOption(aspect),
target = this.inputOption(location),
options = ['hue', 'saturation', 'brightness', 'transparency'],