mirror of
https://github.com/lubosz/overte.git
synced 2025-04-10 03:22:52 +02:00
Merge pull request #14400 from dback2/missingTypeFilters
Add PolyLine/PolyVox to entity list/properties types
This commit is contained in:
commit
76d2519205
2 changed files with 6 additions and 0 deletions
|
@ -134,6 +134,8 @@ const FILTER_TYPES = [
|
|||
"Web",
|
||||
"Material",
|
||||
"ParticleEffect",
|
||||
"PolyLine",
|
||||
"PolyVox",
|
||||
"Text",
|
||||
];
|
||||
|
||||
|
@ -146,6 +148,8 @@ const ICON_FOR_TYPE = {
|
|||
Web: "q",
|
||||
Material: "",
|
||||
ParticleEffect: "",
|
||||
PolyLine: "",
|
||||
PolyVox: "",
|
||||
Text: "l",
|
||||
};
|
||||
|
||||
|
|
|
@ -1342,6 +1342,8 @@ const GROUPS_PER_TYPE = {
|
|||
Material: [ 'base', 'material', 'spatial', 'behavior' ],
|
||||
ParticleEffect: [ 'base', 'particles', 'particles_emit', 'particles_size', 'particles_color', 'particles_alpha',
|
||||
'particles_acceleration', 'particles_spin', 'particles_constraints', 'spatial', 'behavior', 'physics' ],
|
||||
PolyLine: [ 'base', 'spatial', 'behavior', 'collision', 'physics' ],
|
||||
PolyVox: [ 'base', 'spatial', 'behavior', 'collision', 'physics' ],
|
||||
Multiple: [ 'base', 'spatial', 'behavior', 'collision', 'physics' ],
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue