This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jobs: | |
context: | |
runs-on: ubuntu-latest | |
outputs: | |
uuid: ${{ steps.uuid.outputs.value }} | |
steps: | |
- name: 'uuid' | |
id: uuid | |
run: echo "::set-output name=value::$GITHUB_SHA-$(date +"%s")" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import "inputs.def" | |
//AddAction(_ACTION_ID, EInputTarget, EInputDevice, analog, AxisOrButtonId, reverse, halfscope) | |
// analog - if true then the values are in 0.0f .. 1.0f, if false the values are either 0 or 1 (no values between) | |
// reverse - if true then the input is trigered when button is released | |
// halfscope - if true then the action is triggered when the value is > 0.5f | |
// if analog is true then the value is only 0..1f | |
sub GuiPad() | |
{ | |
Layout("CommonGui", false) |
OlderNewer