Jae
Jae
### Operating System Linux (x86-64) (SteamOS, through Flatpak) ### OpenRCT2 build OpenRCT2, v0.4.1(be518f4 on HEAD,DEBUG) ### Describe the issue When building rides, particularly coasters that intertwine with one another, and...
After setting a TextBox object back to a Text value of "" after typing some text, when attempting to "undo" with Ctrl+Z, an exception is thrown. Should it be possible...
Consider the following script, adapted from the main example in the doc: ```ruby require "midi-eye" #puts UniMIDI::Input.gets @input = UniMIDI::Input.use(2) midi_listener = MIDIEye::Listener.new(@input) midi_listener.listen_for(:class => [MIDIMessage::NoteOn, MIDIMessage::NoteOff]) {|event| puts event[:message]}...
Consider the following short script (adapted from the example given in the doc) ```ruby require "midi-eye" @input = UniMIDI::Input.use(1) midi_listener = MIDIEye::Listener.new(@input) midi_listener.listen_for {|event| puts event[:message]} midi_listener.run ``` When running,...