Disable Value Tracking
redBox._Rotation ... -25.069456316483297
blueBox._Rotation ... 1.9305436835166887
Fahrenheit.value ................. 0.595
Celsius.value ...... 0.43007518796992483
FLabel.textString ................... 63
CLabel.textString ................... 43
Fahrenheit:
Celsius:
0 100
43
63
depth: 1
reset
highlight in list when a value changes (siehe Jens)
priorities dropdown
checkbox dropdown
sinnvolles beispiel - electrical circuits
tab panes
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
show vars
JavaScript Workspace
X

Menu
var f = this.get('Fahrenheit'),
        c = this.get('Celsius'),
        ft = this.get('FLabel'),
        ct = this.get('CLabel');
var blue = this.get('blueBox'), red = this.get('redBox');
always: { 
    solver: this.cassowary;
    priority: "strong" 
    red.getRotation() == blue.getRotation() + -27
}
 
/*always: {
    solver: this.cassowary;
    priority: "medium"
    blue.getPosition().x == red.getPosition().x + -94
}*/
    always: {
        solver: this.cassowary;
        priority: "medium"
        (f.getValue() * 80) - -124 == (c.getValue() * -21) * -19 &&
        f.getValue() >= 0 && c.getValue() >= 0 &&
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
ObjectEditor -- workspace>>highlightVariables
X

Menu