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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 |
return dyeingToolBase
end
end
-- Intended to be overriden, called when the tool becomes active
end
-- Intended to be overriden, called when the tool becomes inactive
end
-- Intended to be overriden for custom behavior, controls whether or not a tool uses dye swatches directly
return true
end
-- Intended to be overriden for custom behavior, controls whether or not a tool uses dye saved sets directly
return false
end
-- Intended to be overriden for custom behavior, controls whether this highlights a single slot/channel, or all (return nil for all)
return dyeSlot , dyeChannel
end
end
end
-- Intended to be overriden, called when a dyeable slot swatch gets left clicked
end
-- Called when a slot swatch gets right clicked, could be overridden if necessary
function ( )
restyleSlotData : SetPendingDyes ( zo_replaceInVarArgs ( dyeChannel , INVALID_DYE_ID , restyleSlotData : GetPendingDyes ( ) ) )
end )
end
end
end
end
-- Intended to be overriden, called when a saved set swatch gets left clicked
end
-- Called when a saved set swatch gets right clicked, could be overridden if necessary
function ( )
SetSavedDyeSetDyes ( dyeSetIndex , zo_replaceInVarArgs ( dyeChannel , INVALID_DYE_ID , GetSavedDyeSetDyes ( dyeSetIndex ) ) )
end )
end
end
-- Intended to be overriden for custom cursor over dye swatches
return MOUSE_CURSOR_DO_NOT_CARE
end
end |