Skip to content

Commit

Permalink
Merge pull request #672 from myk002/myk_burrow
Browse files Browse the repository at this point in the history
[burrow] add graphics mode texture and color fields
  • Loading branch information
myk002 authored Nov 3, 2023
2 parents b9c0733 + f2e54e6 commit a23ec83
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
1 change: 1 addition & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ Template for new versions:
# Future

## Structures
- ``burrow``: add new graphics mode texture and color fields

# 50.11-r2

Expand Down
15 changes: 12 additions & 3 deletions df.ui.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,25 @@
(describe-obj $.name)
</code-helper>

<uint8_t name='tile'/>
<int16_t name='fg_color'/>
<int16_t name='bg_color'/>
<uint8_t name='tile' init-value='43'/>
<int16_t name='fg_color' init-value='11'/>
<int16_t name='bg_color' init-value='3'/>

<stl-vector name='block_x' type-name='int32_t'/>
<stl-vector name='block_y' type-name='int32_t'/>
<stl-vector name='block_z' type-name='int32_t'/>

<stl-vector name='units' type-name='int32_t' ref-target='unit'/>
<int32_t name='limit_workshops' since='v0.40.07'/>
<int32_t name='solid_texpos'/>
<int32_t name='blended_texpos'/>
<int32_t name='symbol_index'/>
<uint8_t name='texture_r'/>
<uint8_t name='texture_g'/>
<uint8_t name='texture_b'/>
<uint8_t name='texture_br'/>
<uint8_t name='texture_bg'/>
<uint8_t name='texture_bb'/>
</struct-type>

<struct-type type-name='ui_hotkey'>
Expand Down

0 comments on commit a23ec83

Please sign in to comment.