mirror of
https://github.com/overte-org/overte.git
synced 2025-08-07 18:30:42 +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",
|
"Web",
|
||||||
"Material",
|
"Material",
|
||||||
"ParticleEffect",
|
"ParticleEffect",
|
||||||
|
"PolyLine",
|
||||||
|
"PolyVox",
|
||||||
"Text",
|
"Text",
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -146,6 +148,8 @@ const ICON_FOR_TYPE = {
|
||||||
Web: "q",
|
Web: "q",
|
||||||
Material: "",
|
Material: "",
|
||||||
ParticleEffect: "",
|
ParticleEffect: "",
|
||||||
|
PolyLine: "",
|
||||||
|
PolyVox: "",
|
||||||
Text: "l",
|
Text: "l",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -1342,6 +1342,8 @@ const GROUPS_PER_TYPE = {
|
||||||
Material: [ 'base', 'material', 'spatial', 'behavior' ],
|
Material: [ 'base', 'material', 'spatial', 'behavior' ],
|
||||||
ParticleEffect: [ 'base', 'particles', 'particles_emit', 'particles_size', 'particles_color', 'particles_alpha',
|
ParticleEffect: [ 'base', 'particles', 'particles_emit', 'particles_size', 'particles_color', 'particles_alpha',
|
||||||
'particles_acceleration', 'particles_spin', 'particles_constraints', 'spatial', 'behavior', 'physics' ],
|
'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' ],
|
Multiple: [ 'base', 'spatial', 'behavior', 'collision', 'physics' ],
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue