diff options
| author | Arnold <[email protected]> | 2021-12-26 23:09:29 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-12-26 23:09:29 -0500 |
| commit | 0a611afcb8474afe01a451b20fa5608be334053b (patch) | |
| tree | 6af89bbdab20d6f9ded6c711aefd450ca12e7350 /app/components/label.rb | |
| parent | b7dea8016b5b1328808e28b76cc12343907de63e (diff) | |
| parent | 20da68139878d9286cb642c9bcb5e20c28077ba7 (diff) | |
| download | SteelWings-0a611afcb8474afe01a451b20fa5608be334053b.tar.gz SteelWings-0a611afcb8474afe01a451b20fa5608be334053b.zip | |
Merge pull request #12 from realtradam/development
version 1.0
Diffstat (limited to 'app/components/label.rb')
| -rw-r--r-- | app/components/label.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/app/components/label.rb b/app/components/label.rb new file mode 100644 index 0000000..25b5529 --- /dev/null +++ b/app/components/label.rb @@ -0,0 +1,13 @@ +FF::Cmp.new("Label", props: { + x: 0, + y: 0, + text: 'label', + size_enum: 2, + alignment_enum: 1, + r: 255, + g: 255, + b: 255, + a: 255, + font: "font.ttf", + vertical_alignment_enum: 0 +}) |
