﻿<?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=Doc%3A2.6%2FManual%2FGame_Engine%2FLogic%2FControllers</id>
	<title>Doc:2.6/Manual/Game Engine/Logic/Controllers - 版の履歴</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.blender.jp/index.php?action=history&amp;feed=atom&amp;title=Doc%3A2.6%2FManual%2FGame_Engine%2FLogic%2FControllers"/>
	<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=Doc:2.6/Manual/Game_Engine/Logic/Controllers&amp;action=history"/>
	<updated>2026-06-07T07:15:47Z</updated>
	<subtitle>このウィキのこのページに関する変更履歴</subtitle>
	<generator>MediaWiki 1.31.0</generator>
	<entry>
		<id>https://wiki.blender.jp/index.php?title=Doc:2.6/Manual/Game_Engine/Logic/Controllers&amp;diff=105665&amp;oldid=prev</id>
		<title>Yamyam: 1版 をインポートしました</title>
		<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=Doc:2.6/Manual/Game_Engine/Logic/Controllers&amp;diff=105665&amp;oldid=prev"/>
		<updated>2018-06-28T19:44:35Z</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:44時点における版&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=Doc:2.6/Manual/Game_Engine/Logic/Controllers&amp;diff=105664&amp;oldid=prev</id>
		<title>2012年8月26日 (日) 19:08にwiki&gt;Anatinaeによる</title>
		<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=Doc:2.6/Manual/Game_Engine/Logic/Controllers&amp;diff=105664&amp;oldid=prev"/>
		<updated>2012-08-26T19:08:20Z</updated>

		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;新規ページ&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{Page/Header|2.6|Doc:2.6/Manual/Game Engine/Logic/Controllers}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Controllers =&lt;br /&gt;
The controllers are the bricks that collect data sent by the sensors, and also specify the state for which they operate. After performing the specified logic operations, they  send out pusle signals to drive the actuators to which they are connected.&lt;br /&gt;
&lt;br /&gt;
When a sensor is activated, it sends out a positive pulse, and when it is deactivated, it sends out a negative pulse. The controllers’ job is to check and combine these pulses to trigger the proper response.&lt;br /&gt;
&lt;br /&gt;
The logic blocks for all types of controller may be constructed and changed using the [[Doc:2.6/Manual/Game Engine/Logic/Editor|Logic Editor]]; details of this process are given in the [[Doc:2.6/Manual/Game Engine/Logic/Controllers/Editing|Controller Editing]] page. &lt;br /&gt;
&lt;br /&gt;
{{clr}}&lt;br /&gt;
&lt;br /&gt;
== Controller Types ==&lt;br /&gt;
&lt;br /&gt;
There are eight types of controller logic brick to carry out the logic process on the input signal(s): these are described in the separate pages shown below:&lt;br /&gt;
&lt;br /&gt;
*[[Doc:2.6/Manual/Game Engine/Logic/Controllers/And|AND]]&lt;br /&gt;
*[[Doc:2.6/Manual/Game Engine/Logic/Controllers/Or|OR]]&lt;br /&gt;
*[[Doc:2.6/Manual/Game Engine/Logic/Controllers/Xor|XOR]]&lt;br /&gt;
*[[Doc:2.6/Manual/Game Engine/Logic/Controllers/Nand|NAND]]&lt;br /&gt;
*[[Doc:2.6/Manual/Game Engine/Logic/Controllers/Nor|NOR]]&lt;br /&gt;
*[[Doc:2.6/Manual/Game Engine/Logic/Controllers/Xnor|XNOR]]&lt;br /&gt;
*[[Doc:2.6/Manual/Game Engine/Logic/Controllers/Expression|Expression]]&lt;br /&gt;
*[[Doc:2.6/Manual/Game Engine/Logic/Controllers/Python|Python]]&lt;br /&gt;
&lt;br /&gt;
This table gives a quick overview of the logic operations performed by the logical controller types. The first column, input, represents the number of positive pulses sent from the connected sensors. The following columns represent each controller’s response to those pulses. True means the conditions of the controller are fulfilled, and the actuators it is connected to will be activated; false means the controller’s conditions are not met and nothing will happen. Please consult the individual controller pages for a more detailed description of each controller.&lt;br /&gt;
&lt;br /&gt;
{{Note|1=Note|2=It is assumed that more than one sensor is connected to the controller. For only one sensor, consult the “All” line.}}&lt;br /&gt;
&lt;br /&gt;
{|cellpadding=&amp;quot;10&amp;quot; style=&amp;quot;color:black;&amp;quot; align=center&lt;br /&gt;
 |-style=&amp;quot;background-color:#bcbcbc;&amp;quot;&lt;br /&gt;
 ! Positive sensors !! colspan=6|Controllers&lt;br /&gt;
 |-style=&amp;quot;background-color:#bcbcbc;&amp;quot;&lt;br /&gt;
 | &lt;br /&gt;
||[[Doc:2.6/Manual/Game Engine/Logic/Controllers/And|AND]]&lt;br /&gt;
||[[Doc:2.6/Manual/Game Engine/Logic/Controllers/Or|OR]]&lt;br /&gt;
||[[Doc:2.6/Manual/Game Engine/Logic/Controllers/Xor|XOR]]&lt;br /&gt;
||[[Doc:2.6/Manual/Game Engine/Logic/Controllers/Nand|NAND]]&lt;br /&gt;
||[[Doc:2.6/Manual/Game Engine/Logic/Controllers/Nor|NOR]]&lt;br /&gt;
||[[Doc:2.6/Manual/Game Engine/Logic/Controllers/Xnor|XNOR]]&lt;br /&gt;
 |-style=&amp;quot;background-color:Lime;&amp;quot;&lt;br /&gt;
 |style=&amp;quot;background-color:#bcbcbc;&amp;quot;|None&lt;br /&gt;
 |style=&amp;quot;background-color:Red;&amp;quot;|False&lt;br /&gt;
 |style=&amp;quot;background-color:Red;&amp;quot;|False&lt;br /&gt;
 |style=&amp;quot;background-color:Red;&amp;quot;|False&lt;br /&gt;
 |True||True||True&lt;br /&gt;
 |-style=&amp;quot;background-color:Lime;&amp;quot;&lt;br /&gt;
 |style=&amp;quot;background-color:#bcbcbc;&amp;quot;|One&lt;br /&gt;
 |style=&amp;quot;background-color:Red;&amp;quot;|False&lt;br /&gt;
 |True||True||True&lt;br /&gt;
 |style=&amp;quot;background-color:Red;&amp;quot;|False&lt;br /&gt;
 |style=&amp;quot;background-color:Red;&amp;quot;|False&lt;br /&gt;
 |-style=&amp;quot;background-color:Lime;&amp;quot;&lt;br /&gt;
 |style=&amp;quot;background-color:#bcbcbc;&amp;quot;|Multiple, not all&lt;br /&gt;
 |style=&amp;quot;background-color:Red;&amp;quot;|False&lt;br /&gt;
 |True&lt;br /&gt;
 |style=&amp;quot;background-color:Red;&amp;quot;|False&lt;br /&gt;
 |True&lt;br /&gt;
 |style=&amp;quot;background-color:Red;&amp;quot;|False&lt;br /&gt;
 |True&lt;br /&gt;
 |-style=&amp;quot;background-color:Lime;&amp;quot;&lt;br /&gt;
 |style=&amp;quot;background-color:#bcbcbc;&amp;quot;|All&lt;br /&gt;
 |True||True&lt;br /&gt;
 |style=&amp;quot;background-color:Red;&amp;quot;|False&lt;br /&gt;
 |style=&amp;quot;background-color:Red;&amp;quot;|False&lt;br /&gt;
 |style=&amp;quot;background-color:Red;&amp;quot;|False&lt;br /&gt;
 |True&lt;br /&gt;
 |}&lt;br /&gt;
{{clr}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Game engine]]&lt;/div&gt;</summary>
		<author><name>wiki&gt;Anatinae</name></author>
		
	</entry>
</feed>