2024-04-08 04:22:22 +00:00
|
|
|
function patch(image)
|
|
|
|
-- Camera Pan Speed
|
|
|
|
image:copyInto({119, 68}, image:process("?crop=19;68;117;87"))
|
2024-04-14 22:03:26 +00:00
|
|
|
local checkbox = image:process("?crop=19;26;117;35")
|
2024-04-08 04:22:22 +00:00
|
|
|
-- Anti-Aliasing
|
2024-04-14 22:03:26 +00:00
|
|
|
image:copyInto({119, 26}, checkbox)
|
|
|
|
-- Object Lighting
|
|
|
|
image:copyInto({19, 15}, checkbox)
|
2024-04-08 04:22:22 +00:00
|
|
|
end
|