mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 16:50:06 +00:00
Support placefile icon modulate with "scwx-ModulateIcon:" statement
This commit is contained in:
parent
1a9e87ba07
commit
2f41993d7b
3 changed files with 34 additions and 17 deletions
|
|
@ -488,11 +488,11 @@ void PlacefileIcons::Impl::UpdateBuffers()
|
|||
units::angle::degrees<float> angle = di->angle_;
|
||||
const float a = angle.value();
|
||||
|
||||
// Fixed modulate color
|
||||
const float mc0 = 1.0f;
|
||||
const float mc1 = 1.0f;
|
||||
const float mc2 = 1.0f;
|
||||
const float mc3 = 1.0f;
|
||||
// Modulate color
|
||||
const float mc0 = di->modulate_[0] / 255.0f;
|
||||
const float mc1 = di->modulate_[1] / 255.0f;
|
||||
const float mc2 = di->modulate_[2] / 255.0f;
|
||||
const float mc3 = di->modulate_[3] / 255.0f;
|
||||
|
||||
newIconBuffer_.insert(newIconBuffer_.end(),
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue