class TestApp : ar.BaseApp{ ar.Gui gui; float f=128; void setup(){ gui = (new ar.Gui) .add( (new ar.List) .add(new ar.Partition) .add(new ar.Label("some text")) .add(new ar.Partition("*")) ) .add( (new ar.List) .add(new ar.Partition) .add(new ar.Slider!float("slider!float", f, 0, 255)) ); } void draw(){ f.writeln; gui.draw; } } void main(){ar.run(new TestApp);}
値にアクセスするGuiを表すclassです.