mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
Fix various typos
* Add TODO notes for typos that should be fixed for 5.0 Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
This commit is contained in:
parent
d2ada64a03
commit
f134769506
86 changed files with 396 additions and 396 deletions
|
|
@ -8175,7 +8175,7 @@ void GLTFDocument::_bind_methods() {
|
|||
&GLTFDocument::get_supported_gltf_extensions);
|
||||
}
|
||||
|
||||
void GLTFDocument::_build_parent_hierachy(Ref<GLTFState> p_state) {
|
||||
void GLTFDocument::_build_parent_hierarchy(Ref<GLTFState> p_state) {
|
||||
// build the hierarchy
|
||||
for (GLTFNodeIndex node_i = 0; node_i < p_state->nodes.size(); node_i++) {
|
||||
for (int j = 0; j < p_state->nodes[node_i]->children.size(); j++) {
|
||||
|
|
|
|||
|
|
@ -103,7 +103,7 @@ public:
|
|||
static String _gen_unique_name_static(HashSet<String> &r_unique_names, const String &p_name);
|
||||
|
||||
private:
|
||||
void _build_parent_hierachy(Ref<GLTFState> p_state);
|
||||
void _build_parent_hierarchy(Ref<GLTFState> p_state);
|
||||
double _filter_number(double p_float);
|
||||
void _round_min_max_components(Vector<double> &r_type_min, Vector<double> &r_type_max);
|
||||
String _get_component_type_name(const GLTFAccessor::GLTFComponentType p_component_type);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue