Back to Home

ESO Lua File v100016

ingame/dyeing/dyeingtoolerase.lua

[◄ back to folders ]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
ZO_DyeingToolErase = ZO_DyeingToolBase:Subclass()
function ZO_DyeingToolErase:New(...)
    return ZO_DyeingToolBase.New(self, ...)
end
function ZO_DyeingToolErase:Initialize(owner)
   ZO_DyeingToolBase.Initialize(self, owner)
end
function ZO_DyeingToolErase:Activate(fromTool, suppressSounds)
    if fromTool and not suppressSounds then
        PlaySound(SOUNDS.DYEING_TOOL_ERASE_SELECTED)
    end
end
function ZO_DyeingToolErase:HasSwatchSelection()
    return false
end
function ZO_DyeingToolErase:OnLeftClicked(dyeableSlot, dyeChannel)
    SetPendingSlotDyes(dyeableSlot, zo_replaceInVarArgs(dyeChannel, INVALID_DYE_ID, GetPendingSlotDyes(dyeableSlot)))
    self.owner:OnPendingDyesChanged(dyeableSlot)
    PlaySound(SOUNDS.DYEING_TOOL_ERASE_USED)
end
function ZO_DyeingToolErase:OnSavedSetLeftClicked(dyeSetIndex, dyeChannel)
    SetSavedDyeSetDyes(dyeSetIndex, zo_replaceInVarArgs(dyeChannel, INVALID_DYE_ID, GetSavedDyeSetDyes(dyeSetIndex)))
    self.owner:OnSavedSetSlotChanged(dyeSetIndex)
    PlaySound(SOUNDS.DYEING_TOOL_ERASE_USED)
end
function ZO_DyeingToolErase:GetCursorType(dyeableSlot, dyeChannel)
    return MOUSE_CURSOR_ERASE
end