-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.lua
More file actions
35 lines (32 loc) · 996 Bytes
/
Copy pathconfig.lua
File metadata and controls
35 lines (32 loc) · 996 Bytes
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
return {
command = "/skin",
log_debug = true,
preserve_variation = true,
set_all_sections = true,
-- If dynamic palette-name lookup fails on your build, set these to explicit
-- ESkinPaletteColorIndex numeric values from TheIsle_enums.hpp.
fallback_palette_index = {
blue = nil,
red = nil,
purple = nil,
pink = nil,
green = nil,
black = nil,
white = nil,
},
-- Aliases the command accepts. The first value is also used when trying
-- dynamic palette-name lookup against FSkinPaletteColorData.Name.
color_aliases = {
blue = { "blue" },
red = { "red" },
purple = { "purple", "violet" },
pink = { "pink" },
green = { "green" },
black = { "black" },
white = { "white" },
},
-- UE4SS hook candidates. The native class path is the primary target.
hook_candidates = {
"/Script/TheIsle.IPlayerController:ServerSay",
},
}