﻿<?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%2FPhysics%2FObject%2FSensor</id>
	<title>Doc:2.6/Manual/Game Engine/Physics/Object/Sensor - 版の履歴</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%2FPhysics%2FObject%2FSensor"/>
	<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=Doc:2.6/Manual/Game_Engine/Physics/Object/Sensor&amp;action=history"/>
	<updated>2026-04-25T19:10:46Z</updated>
	<subtitle>このウィキのこのページに関する変更履歴</subtitle>
	<generator>MediaWiki 1.31.0</generator>
	<entry>
		<id>https://wiki.blender.jp/index.php?title=Doc:2.6/Manual/Game_Engine/Physics/Object/Sensor&amp;diff=139615&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/Physics/Object/Sensor&amp;diff=139615&amp;oldid=prev"/>
		<updated>2018-06-28T20:52:10Z</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日 (木) 20: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=Doc:2.6/Manual/Game_Engine/Physics/Object/Sensor&amp;diff=139614&amp;oldid=prev</id>
		<title>wiki&gt;Jaredr122: Created page with &quot;{{Page/Header|2.5|Doc:2.5/Manual/Game Engine/Physics/Occluder|Doc:2.5/Manual/Game Engine/Python API/Bullet physics}}  {{review|partial=X|text=sections}} = Sensor =  The object de...&quot;</title>
		<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=Doc:2.6/Manual/Game_Engine/Physics/Object/Sensor&amp;diff=139614&amp;oldid=prev"/>
		<updated>2012-12-29T05:03:34Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;{{Page/Header|2.5|Doc:2.5/Manual/Game Engine/Physics/Occluder|Doc:2.5/Manual/Game Engine/Python API/Bullet physics}}  {{review|partial=X|text=sections}} = Sensor =  The object de...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;新規ページ&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{Page/Header|2.5|Doc:2.5/Manual/Game Engine/Physics/Occluder|Doc:2.5/Manual/Game Engine/Python API/Bullet physics}}&lt;br /&gt;
&lt;br /&gt;
{{review|partial=X|text=sections}}&lt;br /&gt;
= Sensor =&lt;br /&gt;
&lt;br /&gt;
The object detects static and dynamic objects but not other collisions sensors objects. The Sensor is similar to the physics objects that underlie the Near and Radar sensors. Like the Near and Radar object it is:&lt;br /&gt;
* static and ghost&lt;br /&gt;
* invisible by default&lt;br /&gt;
* always active to ensure correct collision detection&lt;br /&gt;
* capable of detecting both static and dynamic objects&lt;br /&gt;
* ignoring collision with their parent&lt;br /&gt;
* capable of broadphase filtering based on:&lt;br /&gt;
** Actor option: the collisioning object must have the Actor flag set to be detected&lt;br /&gt;
** property/material: as specified in the collision sensors attached to it.&lt;br /&gt;
&lt;br /&gt;
Broadphase filtering is important for performance reason: the collision points will be computed only for the objects that pass the broadphase filter.&lt;br /&gt;
* automatically removed from the simulation when no collision sensor is active on it&lt;br /&gt;
&lt;br /&gt;
Unlike the Near and Radar object it can:&lt;br /&gt;
* take any shape, including triangle mesh&lt;br /&gt;
* be made visible for debugging (just use the Visible actuator)&lt;br /&gt;
* have multiple collision sensors using it&lt;br /&gt;
&lt;br /&gt;
Other than that, the sensor objects are ordinary objects. You can move them freely or parent them. When parented to a dynamic object, they can provide advanced collision control to this object.&lt;br /&gt;
&lt;br /&gt;
The type of collision capability depends on the shape:&lt;br /&gt;
* box, sphere, cylinder, cone, convex hull provide volume detection.&lt;br /&gt;
* triangle mesh provides surface detection but you can give some volume to the surface by increasing the margin in the Advanced Settings panel. The margin applies on both sides of the surface.&lt;br /&gt;
&lt;br /&gt;
Performance tip:&lt;br /&gt;
* Sensor objects perform better than Near and Radar: they do less synchronizations because of the Scenegraph optimizations and they can have multiple collision sensors on them (with different property filtering for example).&lt;br /&gt;
* Always prefer simple shape (box, sphere) to complex shape whenever possible.&lt;br /&gt;
* Always use broadphase filtering (avoid collision sensor with empty propery/material)&lt;br /&gt;
* Use collision sensor only when you need them. When no collision sensor is active on the sensor object, it is removed from the simulation and consume no CPU.&lt;br /&gt;
&lt;br /&gt;
Known limitations:&lt;br /&gt;
* When running Blender in debug mode, you will see one warning line of the console:&amp;lt;br /&amp;gt; &amp;quot;warning btCollisionDispatcher::needsCollision: static-static collision!&amp;quot;&amp;lt;br /&amp;gt;In release mode this message is not printed.&lt;br /&gt;
* Collision margin has no effect on sphere, cone and cylinder shape.&lt;br /&gt;
&lt;br /&gt;
== Settings ==&lt;br /&gt;
;{{Literal|Invisible}}&lt;br /&gt;
:See [[Doc:2.6/Manual/Game Engine/Physics/Object Type/Static|Here]]&lt;br /&gt;
&lt;br /&gt;
== Collision Bounds ==&lt;br /&gt;
See [[Doc:2.6/Manual/Game Engine/Physics/Object Type|Here]].&lt;br /&gt;
&lt;br /&gt;
{{Page/Footer|Doc:2.5/Manual/Game Engine/Physics/Occluder|Doc:2.5/Manual/Game Engine/Python API/Bullet physics}}&lt;/div&gt;</summary>
		<author><name>wiki&gt;Jaredr122</name></author>
		
	</entry>
</feed>