mirror of
https://github.com/overte-org/overte.git
synced 2025-04-26 06:56:32 +02:00
49 lines
No EOL
1.3 KiB
JavaScript
49 lines
No EOL
1.3 KiB
JavaScript
// Copyright 2016 High Fidelity, Inc.
|
|
//
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
setEntityUserData = function(id, data) {
|
|
var json = JSON.stringify(data)
|
|
Entities.editEntity(id, {
|
|
userData: json
|
|
});
|
|
}
|
|
|
|
// FIXME do non-destructive modification of the existing user data
|
|
getEntityUserData = function(id) {
|
|
var results = null;
|
|
var properties = Entities.getEntityProperties(id, "userData");
|
|
if (properties.userData) {
|
|
try {
|
|
results = JSON.parse(properties.userData);
|
|
} catch (err) {
|
|
// print('error parsing json');
|
|
// print('properties are:'+ properties.userData);
|
|
}
|
|
}
|
|
return results ? results : {};
|
|
}
|
|
|
|
|
|
// Non-destructively modify the user data of an entity.
|
|
setEntityCustomData = function(customKey, id, data) {
|
|
var userData = getEntityUserData(id);
|
|
if (data == null) {
|
|
delete userData[customKey];
|
|
} else {
|
|
userData[customKey] = data;
|
|
}
|
|
setEntityUserData(id, userData);
|
|
}
|
|
|
|
getEntityCustomData = function(customKey, id, defaultValue) {
|
|
var userData = getEntityUserData(id);
|
|
if (undefined != userData[customKey]) {
|
|
return userData[customKey];
|
|
} else {
|
|
return defaultValue;
|
|
}
|
|
} |