Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Alchemy Viewer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
Alchemy Viewer
Alchemy Viewer
Merge requests
!81
Local Inventory setup, Hex editor, Legacy Profiles that aren't ass, and sundry methods abound
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Local Inventory setup, Hex editor, Legacy Profiles that aren't ass, and sundry methods abound
oh-the-humanity
into
main
Overview
0
Commits
15
Pipelines
0
Changes
72
Merged
Botnet4U
requested to merge
oh-the-humanity
into
main
2 years ago
Overview
0
Commits
15
Pipelines
0
Changes
72
Expand
0
0
Merge request reports
Compare
main
version 1
20059c5d
2 years ago
main (base)
and
latest version
latest version
6bbeecf7
15 commits,
2 years ago
version 1
20059c5d
14 commits,
2 years ago
72 files
+
6198
−
141
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
72
Search (e.g. *.vue) (Ctrl+P)
indra/llcommon/llassettype.cpp
+
12
−
0
Options
@@ -244,3 +244,15 @@ bool LLAssetType::lookupIsAssetIDKnowable(EType asset_type)
}
return
false
;
}
std
::
vector
<
std
::
string
>
LLAssetType
::
getAssetTypeNames
()
{
std
::
vector
<
std
::
string
>
names
;
const
LLAssetDictionary
&
dict
=
LLAssetDictionary
::
instanceFast
();
for
(
const
auto
&
dict_pair
:
dict
)
{
const
AssetEntry
*
entry
=
dict_pair
.
second
;
names
.
push_back
(
entry
->
mTypeName
);
}
return
names
;
}
Loading