﻿<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ja">
	<id>https://wiki.blender.jp/index.php?action=history&amp;feed=atom&amp;title=Dev%3ASource%2FModifiers%2FStack%2FTweakModifier</id>
	<title>Dev:Source/Modifiers/Stack/TweakModifier - 版の履歴</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.blender.jp/index.php?action=history&amp;feed=atom&amp;title=Dev%3ASource%2FModifiers%2FStack%2FTweakModifier"/>
	<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=Dev:Source/Modifiers/Stack/TweakModifier&amp;action=history"/>
	<updated>2026-06-08T07:04:51Z</updated>
	<subtitle>このウィキのこのページに関する変更履歴</subtitle>
	<generator>MediaWiki 1.31.0</generator>
	<entry>
		<id>https://wiki.blender.jp/index.php?title=Dev:Source/Modifiers/Stack/TweakModifier&amp;diff=56252&amp;oldid=prev</id>
		<title>Yamyam: 1版 をインポートしました</title>
		<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=Dev:Source/Modifiers/Stack/TweakModifier&amp;diff=56252&amp;oldid=prev"/>
		<updated>2018-06-28T17:52:25Z</updated>

		<summary type="html">&lt;p&gt;1版 をインポートしました&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;ja&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #222; text-align: center;&quot;&gt;← 古い版&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #222; text-align: center;&quot;&gt;2018年6月28日 (木) 17:52時点における版&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;ja&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(相違点なし)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Yamyam</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.blender.jp/index.php?title=Dev:Source/Modifiers/Stack/TweakModifier&amp;diff=56251&amp;oldid=prev</id>
		<title>wiki&gt;Mindrones: moved Dev:Source/Blender/Modifiers/Stack/TweakModifier to Dev:Source/Modifiers/Stack/TweakModifier</title>
		<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=Dev:Source/Modifiers/Stack/TweakModifier&amp;diff=56251&amp;oldid=prev"/>
		<updated>2010-03-09T10:21:13Z</updated>

		<summary type="html">&lt;p&gt;moved &lt;a href=&quot;/Dev:Source/Blender/Modifiers/Stack/TweakModifier&quot; class=&quot;mw-redirect&quot; title=&quot;Dev:Source/Blender/Modifiers/Stack/TweakModifier&quot;&gt;Dev:Source/Blender/Modifiers/Stack/TweakModifier&lt;/a&gt; to &lt;a href=&quot;/Dev:Source/Modifiers/Stack/TweakModifier&quot; title=&quot;Dev:Source/Modifiers/Stack/TweakModifier&quot;&gt;Dev:Source/Modifiers/Stack/TweakModifier&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;新規ページ&lt;/b&gt;&lt;/p&gt;&lt;div&gt;=Introduction=&lt;br /&gt;
The tweak modifier provides the ability to tweak the output of the modifier stack at the position of the tweak modifier. Only mesh deformations are supported - no topology changes are allowed.&lt;br /&gt;
&lt;br /&gt;
=Functionality=&lt;br /&gt;
To use the tweak modifier, the user applies the modifier, enters a special &amp;quot;Tweak&amp;quot; mode, and deforms the mesh as desired. These deformations are saved either as absolute positions or as offsets from the vertices' base positions. Every time the modifier stack is evaluated, the deformations are applied to the output of the modifiers preceding the tweak modifier in the stack.&lt;br /&gt;
&lt;br /&gt;
=Issues=&lt;br /&gt;
==The picking problem==&lt;br /&gt;
The main problem that arises when implementing this modifier is that of picking the correct vertices to apply the deformation to. If the input mesh topology or vertex order has changed since the mesh was tweaked (i.e. since the deformation data was created), the results could be seriously screwed. Some possible methods are outlined below.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
;Index-based: Just assume the vertices are in the same order as they were when the mesh was tweaked.&lt;br /&gt;
:*Breaks if the base mesh topology or vertex order changes&lt;br /&gt;
:*Breaks if the output of any of the preceding modifiers changes in topology or vertex order&lt;br /&gt;
:*Could possibly just ignore deformation data that doesn't have a valid index, or disable the modifier if this condition is detected&lt;br /&gt;
&lt;br /&gt;
;ID-based: Generate unique IDs for vertices in the base mesh, and store deformation data indexed by base mesh ID and duplicate number (e.g. &amp;quot;offset the nth duplicate of vertex with ID x with this vector&amp;quot;).&lt;br /&gt;
:*Survives changes in the base mesh topology or vertex order (just ignore IDs that don't exist)&lt;br /&gt;
:*Breaks if any of the preceding modifiers change the order in which they make duplicates (or the number of duplicates they make)&lt;br /&gt;
:*What to do with vertices that aren't duplicates of base mesh verts (e.g. subsurf)?&lt;br /&gt;
::*Possibly use face ID as well&lt;br /&gt;
&lt;br /&gt;
;Combination: Store multiple identifying characteristics, and use the &amp;quot;best fit&amp;quot; vertex.&lt;br /&gt;
:*Index&lt;br /&gt;
:*Base vertex ID&lt;br /&gt;
:*Base face ID&lt;br /&gt;
:*Last known position&lt;br /&gt;
:*Problem: if you try to be too smart, you end up being stupid in unpredictable ways, and irritating the user&lt;/div&gt;</summary>
		<author><name>wiki&gt;Mindrones</name></author>
		
	</entry>
</feed>