Merge pull request #9862 from ISylvox/tagents-to-tangents

Renames tagents to tangents
This commit is contained in:
Rémi Verschelde 2017-07-26 10:46:48 +02:00 committed by GitHub
commit 5c3f05a680
3 changed files with 5 additions and 5 deletions

View file

@ -24770,7 +24770,7 @@
<description>
</description>
</method>
<method name="create_debug_tagents">
<method name="create_debug_tangents">
<description>
</description>
</method>

View file

@ -275,7 +275,7 @@ void MeshInstance::_mesh_changed() {
materials.resize(mesh->get_surface_count());
}
void MeshInstance::create_debug_tagents() {
void MeshInstance::create_debug_tangents() {
Vector<Vector3> lines;
Vector<Color> colors;
@ -366,8 +366,8 @@ void MeshInstance::_bind_methods() {
ClassDB::set_method_flags("MeshInstance", "create_convex_collision", METHOD_FLAGS_DEFAULT);
ClassDB::bind_method(D_METHOD("_mesh_changed"), &MeshInstance::_mesh_changed);
ClassDB::bind_method(D_METHOD("create_debug_tagents"), &MeshInstance::create_debug_tagents);
ClassDB::set_method_flags("MeshInstance", "create_debug_tagents", METHOD_FLAGS_DEFAULT | METHOD_FLAG_EDITOR);
ClassDB::bind_method(D_METHOD("create_debug_tangents"), &MeshInstance::create_debug_tangents);
ClassDB::set_method_flags("MeshInstance", "create_debug_tangents", METHOD_FLAGS_DEFAULT | METHOD_FLAG_EDITOR);
ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "mesh", PROPERTY_HINT_RESOURCE_TYPE, "Mesh"), "set_mesh", "get_mesh");
ADD_PROPERTY(PropertyInfo(Variant::NODE_PATH, "skeleton"), "set_skeleton_path", "get_skeleton_path");

View file

@ -83,7 +83,7 @@ public:
Node *create_convex_collision_node();
void create_convex_collision();
void create_debug_tagents();
void create_debug_tangents();
virtual Rect3 get_aabb() const;
virtual PoolVector<Face3> get_faces(uint32_t p_usage_flags) const;