﻿<?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%3APy%2FScripts%2F3D_interaction%2FCopy_Attributes_Menu</id>
	<title>Dev:Py/Scripts/3D interaction/Copy Attributes Menu - 版の履歴</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.blender.jp/index.php?action=history&amp;feed=atom&amp;title=Dev%3APy%2FScripts%2F3D_interaction%2FCopy_Attributes_Menu"/>
	<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=Dev:Py/Scripts/3D_interaction/Copy_Attributes_Menu&amp;action=history"/>
	<updated>2026-07-03T22:57:43Z</updated>
	<subtitle>このウィキのこのページに関する変更履歴</subtitle>
	<generator>MediaWiki 1.31.0</generator>
	<entry>
		<id>https://wiki.blender.jp/index.php?title=Dev:Py/Scripts/3D_interaction/Copy_Attributes_Menu&amp;diff=100025&amp;oldid=prev</id>
		<title>Yamyam: 1版 をインポートしました</title>
		<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=Dev:Py/Scripts/3D_interaction/Copy_Attributes_Menu&amp;diff=100025&amp;oldid=prev"/>
		<updated>2018-06-28T19:39:03Z</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日 (木) 19:39時点における版&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:Py/Scripts/3D_interaction/Copy_Attributes_Menu&amp;diff=100024&amp;oldid=prev</id>
		<title>wiki&gt;Brecht: moved Dev:2.5/Py/Scripts/3D interaction/Copy Attributes Menu to Dev:Py/Scripts/3D interaction/Copy Attributes Menu: remove version namespace</title>
		<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=Dev:Py/Scripts/3D_interaction/Copy_Attributes_Menu&amp;diff=100024&amp;oldid=prev"/>
		<updated>2015-12-27T19:24:31Z</updated>

		<summary type="html">&lt;p&gt;moved &lt;a href=&quot;/Dev:2.5/Py/Scripts/3D_interaction/Copy_Attributes_Menu&quot; class=&quot;mw-redirect&quot; title=&quot;Dev:2.5/Py/Scripts/3D interaction/Copy Attributes Menu&quot;&gt;Dev:2.5/Py/Scripts/3D interaction/Copy Attributes Menu&lt;/a&gt; to &lt;a href=&quot;/Dev:Py/Scripts/3D_interaction/Copy_Attributes_Menu&quot; title=&quot;Dev:Py/Scripts/3D interaction/Copy Attributes Menu&quot;&gt;Dev:Py/Scripts/3D interaction/Copy Attributes Menu&lt;/a&gt;: remove version namespace&lt;/p&gt;
&lt;p&gt;&lt;b&gt;新規ページ&lt;/b&gt;&lt;/p&gt;&lt;div&gt;== Description ==&lt;br /&gt;
&lt;br /&gt;
The addon creates per-mode menus (currently for object mode and pose mode) mapped to ctrl-c. Each menu-item is an operator, currently all ops are auto-generated. The goal is to replicate and perhaps extend the functionality of ctrl-c in 2.5, to ease transition / fill in missing functionality in 2.5 - I don't think the goal is to have this as a permanent default UI item.&lt;br /&gt;
&lt;br /&gt;
== Adding Functionality ==&lt;br /&gt;
&lt;br /&gt;
Add a new tuple to pose_copies or object copies (or, if you are filiing in a blank, uncomment it). the first item of the tuple is a unique string that will be part of the operator ID, the second is the operator user readable name, the third is it's tooltip, and finally, the last item in the tuple is the function you will need to code to add functionality. To code the functions look at eg. obMas:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
def obMas(ob, active, context):&lt;br /&gt;
    ob.game.mass = active.game.mass&lt;br /&gt;
    return('INFO', &amp;quot;mass copied&amp;quot;)&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You need to have the same arg. list (obj, active, context).. ob refers to one of the selected objects, active to the active object, and context is obvious.&lt;br /&gt;
&lt;br /&gt;
For the pose functions it's the same, except we have pose bones instead of objects:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
def pLocLocExec(bone, active, context):&lt;br /&gt;
    bone.location = active.location&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note that both bone and active are pose bones.&lt;br /&gt;
&lt;br /&gt;
== Issues/TODO ==&lt;br /&gt;
&lt;br /&gt;
* Missing functionality from 2.4&lt;br /&gt;
* Per constraint and per modifier copying ala 2.4; I need to figure out how to build the list and allow user to select items from it&lt;br /&gt;
* in the register() function is a horrible hack: Windows Machines need to register the dynamically generated ops, while linux users need to unregister and then register them again , in order for operators to be valid. This should all not be needed due to metaclassing.&lt;br /&gt;
* Keymap registration and unregistration could be done more elegantly.&lt;/div&gt;</summary>
		<author><name>wiki&gt;Brecht</name></author>
		
	</entry>
</feed>