﻿<?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%2F%CE%99%CE%B4%CE%B9%CF%8C%CF%84%CE%B7%CF%84%CE%B5%CF%82</id>
	<title>Doc:2.6/Manual/Game Engine/Logic/Ιδιότητες - 版の履歴</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%2F%CE%99%CE%B4%CE%B9%CF%8C%CF%84%CE%B7%CF%84%CE%B5%CF%82"/>
	<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=Doc:2.6/Manual/Game_Engine/Logic/%CE%99%CE%B4%CE%B9%CF%8C%CF%84%CE%B7%CF%84%CE%B5%CF%82&amp;action=history"/>
	<updated>2026-04-24T12:58:22Z</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/%CE%99%CE%B4%CE%B9%CF%8C%CF%84%CE%B7%CF%84%CE%B5%CF%82&amp;diff=140539&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/%CE%99%CE%B4%CE%B9%CF%8C%CF%84%CE%B7%CF%84%CE%B5%CF%82&amp;diff=140539&amp;oldid=prev"/>
		<updated>2018-06-28T20:53:19Z</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:53時点における版&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/%CE%99%CE%B4%CE%B9%CF%8C%CF%84%CE%B7%CF%84%CE%B5%CF%82&amp;diff=140538&amp;oldid=prev</id>
		<title>2013年2月22日 (金) 14:54にwiki&gt;Maryqueenによる</title>
		<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=Doc:2.6/Manual/Game_Engine/Logic/%CE%99%CE%B4%CE%B9%CF%8C%CF%84%CE%B7%CF%84%CE%B5%CF%82&amp;diff=140538&amp;oldid=prev"/>
		<updated>2013-02-22T14:54:09Z</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|}}&lt;br /&gt;
&lt;br /&gt;
{{Page/Header|2.5|Doc:2.5/Manual/Game Engine/Logic/Actors/Soft Body|Doc:2.5/Manual/Game Engine/Logic/Sensors}}&lt;br /&gt;
&lt;br /&gt;
=Properties=&lt;br /&gt;
Properties are the game logic equivalent to variables. They are stored with the object, and can be used to represent things about them such as ammo, health, name, and so on.&lt;br /&gt;
{{clr}}&lt;br /&gt;
&lt;br /&gt;
==Property Types==&lt;br /&gt;
There are five types of properties:&lt;br /&gt;
{|{{Css/prettytable}}&lt;br /&gt;
|{{Literal|Timer}}&lt;br /&gt;
|Starts at the property value and counts upwards as long as the object exists. It can for example be used if you want to know how long time it takes the player to complete a level.&lt;br /&gt;
|-&lt;br /&gt;
|{{Literal|Float}}&lt;br /&gt;
|Uses decimal numbers as values, can range from -10000.000 to 10000.000. It is useful for precision values.&lt;br /&gt;
|-&lt;br /&gt;
|{{Literal|Integer}}&lt;br /&gt;
|Uses integers (whole numbers) as values, between -10000 and 10000. Useful for counting things such as ammunition, where decimals are unnecessary.&lt;br /&gt;
|-&lt;br /&gt;
|{{Literal|String}}&lt;br /&gt;
|Takes text as value. Can store 128 characters.&lt;br /&gt;
|-&lt;br /&gt;
|{{Literal|Boolean}}&lt;br /&gt;
|Boolean variable, has two values: true or false. This is useful for things that have only two modes, like a light switch.&lt;br /&gt;
|}&lt;br /&gt;
{{clr}}&lt;br /&gt;
&lt;br /&gt;
==Using Properties==&lt;br /&gt;
Properties can be set up and initialised in the Properties panel of the Logic Editor - see the [[Doc:2.6/Manual/Game_Engine/Logic/Properties/Editing|Property Editing]] page for details.  When a game is running, values of properties are set, manipulated, and evaluated using the [[Doc:2.6/Manual/Game_Engine/Logic/Sensors/Property|Property Sensor]] and the [[Doc:2.6/Manual/Game Engine/Logic/Actuators/Property|Property Actuator]]. &lt;br /&gt;
{{clr}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Page/Footer|}}&lt;br /&gt;
&lt;br /&gt;
{{Category:Game engine}}&lt;/div&gt;</summary>
		<author><name>wiki&gt;Maryqueen</name></author>
		
	</entry>
</feed>