mirror of
https://github.com/godotengine/godot.git
synced 2024-11-22 20:23:53 +00:00
Merge pull request #48187 from brakhane/remove-dupe-comments
Remove duplicate comments
This commit is contained in:
commit
83cc6bcf55
@ -1013,7 +1013,6 @@ Node3D *EditorSceneImporterFBX::_generate_scene(
|
||||
const uint64_t target_id = track->key();
|
||||
int track_idx = animation->add_track(Animation::TYPE_TRANSFORM);
|
||||
|
||||
// animation->track_set_path(track_idx, node_path);
|
||||
// animation->track_set_path(track_idx, node_path);
|
||||
Ref<FBXBone> bone;
|
||||
|
||||
|
@ -7922,7 +7922,6 @@ void RendererStorageRD::global_variable_set_override(const StringName &p_name, c
|
||||
|
||||
_global_variable_mark_buffer_dirty(gv.buffer_index, gv.buffer_elements);
|
||||
} else {
|
||||
//texture
|
||||
//texture
|
||||
for (Set<RID>::Element *E = gv.texture_materials.front(); E; E = E->next()) {
|
||||
Material *material = material_owner.getornull(E->get());
|
||||
|
@ -3955,8 +3955,6 @@ ShaderLanguage::Node *ShaderLanguage::_parse_expression(BlockNode *p_block, cons
|
||||
|
||||
ERR_FAIL_COND_V(!expr, nullptr);
|
||||
|
||||
/* OK now see what's NEXT to the operator.. */
|
||||
/* OK now see what's NEXT to the operator.. */
|
||||
/* OK now see what's NEXT to the operator.. */
|
||||
|
||||
while (true) {
|
||||
@ -4734,7 +4732,6 @@ ShaderLanguage::Node *ShaderLanguage::_parse_expression(BlockNode *p_block, cons
|
||||
|
||||
ERR_FAIL_COND_V(next_op == -1, nullptr);
|
||||
|
||||
// OK! create operator..
|
||||
// OK! create operator..
|
||||
if (is_unary) {
|
||||
int expr_pos = next_op;
|
||||
|
@ -80,7 +80,6 @@ struct ClipVertex
|
||||
btVector3 v;
|
||||
int id;
|
||||
//b2ContactID id;
|
||||
//b2ContactID id;
|
||||
};
|
||||
|
||||
#define b2Dot(a, b) (a).dot(b)
|
||||
|
@ -42,7 +42,6 @@ void btMultiBodyJointMotor::finalizeMultiDof()
|
||||
int linkDoF = 0;
|
||||
unsigned int offset = 6 + (m_bodyA->getLink(m_linkA).m_dofOffset + linkDoF);
|
||||
|
||||
// row 0: the lower bound
|
||||
// row 0: the lower bound
|
||||
jacobianA(0)[offset] = 1;
|
||||
|
||||
|
@ -44,7 +44,6 @@ void btMultiBodySphericalJointMotor::finalizeMultiDof()
|
||||
int linkDoF = 0;
|
||||
unsigned int offset = 6 + (m_bodyA->getLink(m_linkA).m_dofOffset + linkDoF);
|
||||
|
||||
// row 0: the lower bound
|
||||
// row 0: the lower bound
|
||||
jacobianA(0)[offset] = 1;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user