﻿<?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</id>
	<title>Doc:2.6/Manual/Game Engine - 版の履歴</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"/>
	<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=Doc:2.6/Manual/Game_Engine&amp;action=history"/>
	<updated>2026-06-10T06:27:55Z</updated>
	<subtitle>このウィキのこのページに関する変更履歴</subtitle>
	<generator>MediaWiki 1.31.0</generator>
	<entry>
		<id>https://wiki.blender.jp/index.php?title=Doc:2.6/Manual/Game_Engine&amp;diff=102387&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&amp;diff=102387&amp;oldid=prev"/>
		<updated>2018-06-28T19:41:00Z</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:41時点における版&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&amp;diff=102386&amp;oldid=prev</id>
		<title>2013年6月2日 (日) 17:47にwiki&gt;Agoose77による</title>
		<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=Doc:2.6/Manual/Game_Engine&amp;diff=102386&amp;oldid=prev"/>
		<updated>2013-06-02T17:47:56Z</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}}&lt;br /&gt;
&lt;br /&gt;
= Introduction to Game Engine =&lt;br /&gt;
&lt;br /&gt;
Blender has its own built in Game Engine that allows you to create interactive 3D applications or simulations. The major difference between Game Engine and the conventional Blender  system is  in the rendering process. In the normal Blender engine, images and animations are built off-line – once rendered they cannot be modified.  Conversely, the Blender Game Engine renders scenes continuously in real-time, and incorporates facilities for  user interaction during the rendering process.&lt;br /&gt;
&lt;br /&gt;
[[File:BGE_Introduction_ScreenShot.png|512px|thumb|center|Screenshot from &amp;quot;Yo Frankie&amp;quot;, produced with Blender Game Engine]]&lt;br /&gt;
&lt;br /&gt;
The Blender Game Engine oversees a game loop, which processes logic, sound, physics and rendering simulations in sequential order. The engine is written in C++. &lt;br /&gt;
&lt;br /&gt;
By default, the user has access to a powerful, high level, Event Driven [[Doc:2.6/Manual/Game Engine/Logic/Editor|Logic Editor]] which is comprised of a seriers of specialised components called &amp;quot;Logic Bricks&amp;quot;. The [[Doc:2.6/Manual/Game Engine/Logic/Editor|Logic Editor]] provides deep interaction with the simulation, and its functionality can be extended through Python scripting. It is designed to abstract the complex engine features into a simple user interface, which does not require experience with Programming. An overview of the [[Doc:2.6/Manual/Game Engine/Logic/Editor|Logic Editor]] can be found in the [[Doc:2.6/Manual/Game Engine/Screen_Layout|Game Logic Screen Layout]]&lt;br /&gt;
&lt;br /&gt;
The Game Engine is closely integrated with the existing code base of Blender, which permits quick transitions between the traditional modelling featureset and game-specific functionality provided by the program. In this sense, the Game Engine can be efficiently used in all areas of game design, from prototyping to final release.&lt;br /&gt;
&lt;br /&gt;
The Game Engine can simulate content within Blender, however it also includes the ability to export a binary run-time to Windows, Linux and MacOS. There is also basic support for mobile platforms with the Android Blender Player GSOC 2012 project.&lt;br /&gt;
&lt;br /&gt;
There are a number of powerful libraries included in the 2.5 / 2.6 releases of Blender, including:&lt;br /&gt;
* Recast - a state of the art navigation mesh construction toolset for games.&lt;br /&gt;
* Detour - a path-finding and spatial reasoning toolkit. &lt;br /&gt;
* Bullet - a physics engine featuring 3D collision detection, soft body dynamics, and rigid body dynamics&lt;br /&gt;
* Audaspace - a sound library for control of audio. Uses OpenAL or SDL&lt;br /&gt;
&lt;br /&gt;
When creating a game or simulation in the BGE, there are four essential steps:&lt;br /&gt;
# Create visual elements that can be rendered. This could be 3D models or images.  &lt;br /&gt;
# Enable interaction within the scene using logic bricks to script custom behaviour and determine how it is invoked (using the appropriate &amp;quot;sensors&amp;quot; such as keyboards or joysticks).&lt;br /&gt;
# Create one (or more) camera to give a frustrum from which to render the scene, and modify the parameters to support the environment in which the game will be displayed, such as Stereo rendering.&lt;br /&gt;
# Launch the game, using the internal player or exporting a runtime to the appropriate platform.&lt;br /&gt;
&lt;br /&gt;
[[Category:Game engine]]&lt;/div&gt;</summary>
		<author><name>wiki&gt;Agoose77</name></author>
		
	</entry>
</feed>