Add method to get the local entity ID

Add method to get the local entity ID to be able to exclude it from the entity list in create app
This commit is contained in:
Alezia Kurdis 2025-03-21 21:41:54 -04:00 committed by GitHub
parent c61f21fd1d
commit c6e5ae153d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,9 +1,9 @@
// gridTool.js
//
// Created by Ryan Huffman on 6 Nov 2014
// Created by Ryan Huffman on November 6th, 2014
// Copyright 2014 High Fidelity, Inc.
// Copyright 2020 Vircadia contributors.
// Copyright 2022-2023 Overte e.V.
// Copyright 2022-2025 Overte e.V.
//
// Distributed under the Apache License, Version 2.0.
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
@ -47,6 +47,10 @@ Grid = function() {
return origin;
};
that.getGridEntityToolID = function() {
return gridEntityTool;
};
that.getMinorIncrement = function() {
return minorGridEvery;
};