Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified docs/gallery/assets/vertex-weight-limit-hero.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/gallery/contact-sheets/game-pipeline-audit-contact-sheet.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/gallery/vertex-weight-limit/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -580,7 +580,7 @@ <h2>Source</h2>
cam.location = (<span class="n">5.3</span>, -<span class="n">6.2</span>, <span class="n">2.1</span>)
scene.collection.objects.link(cam)
target = bpy.data.objects.new(<span class="s">&quot;Aim&quot;</span>, <span class="k">None</span>)
target.location = (-<span class="n">0.15</span>, <span class="n">0.0</span>, <span class="n">1.5</span>)
target.location = (<span class="n">0.55</span>, <span class="n">0.0</span>, <span class="n">1.45</span>)
scene.collection.objects.link(target)
con = cam.constraints.new(<span class="s">&#x27;TRACK_TO&#x27;</span>)
con.target = target
Expand Down
Binary file modified examples/vertex-weight-limit/preview.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion examples/vertex-weight-limit/vertex_weight_limit.py
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ def light(name, loc, energy, size, col, rot):
cam.location = (5.3, -6.2, 2.1)
scene.collection.objects.link(cam)
target = bpy.data.objects.new("Aim", None)
target.location = (-0.15, 0.0, 1.5)
target.location = (0.55, 0.0, 1.45)
scene.collection.objects.link(target)
con = cam.constraints.new('TRACK_TO')
con.target = target
Expand Down
Loading