10 lines
197 B
JavaScript
10 lines
197 B
JavaScript
AFRAME.registerComponent('text-uppercase', {
|
|
schema: {
|
|
value: {type: 'string'}
|
|
},
|
|
|
|
update: function () {
|
|
this.el.setAttribute('text', 'value', this.data.value.toUpperCase());
|
|
}
|
|
});
|