﻿<?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%3ARef%2FRelease_Notes%2F2.76%2FBGE</id>
	<title>Dev:Ref/Release Notes/2.76/BGE - 版の履歴</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.blender.jp/index.php?action=history&amp;feed=atom&amp;title=Dev%3ARef%2FRelease_Notes%2F2.76%2FBGE"/>
	<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=Dev:Ref/Release_Notes/2.76/BGE&amp;action=history"/>
	<updated>2026-09-07T00:34:21Z</updated>
	<subtitle>このウィキのこのページに関する変更履歴</subtitle>
	<generator>MediaWiki 1.31.0</generator>
	<entry>
		<id>https://wiki.blender.jp/index.php?title=Dev:Ref/Release_Notes/2.76/BGE&amp;diff=149861&amp;oldid=prev</id>
		<title>Yamyam: 1版 をインポートしました</title>
		<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=Dev:Ref/Release_Notes/2.76/BGE&amp;diff=149861&amp;oldid=prev"/>
		<updated>2018-06-28T21:14:15Z</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日 (木) 21:14時点における版&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:Ref/Release_Notes/2.76/BGE&amp;diff=149860&amp;oldid=prev</id>
		<title>2015年10月1日 (木) 09:51にwiki&gt;Tpanzerによる</title>
		<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=Dev:Ref/Release_Notes/2.76/BGE&amp;diff=149860&amp;oldid=prev"/>
		<updated>2015-10-01T09:51: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;=Blender 2.76: Game Engine =&lt;br /&gt;
== Camera lens shift ==&lt;br /&gt;
&lt;br /&gt;
The Blender camera supports lens shift in order to produce architecture-like two vanishing point renders and to match projector offsets. Until now, BGE applications relying on those parameters had to resort to manually defining their projection matrices.&lt;br /&gt;
&lt;br /&gt;
We now fully support the Blender camera lens shift (vertical and horizontal), so that what you see in the Blender viewport will be what you see in the game.  ([https://developer.blender.org/D1379 D1379]). This is particularly important for video projection projects, where you need to mimic the digital projector offset with the game camera.&lt;br /&gt;
&lt;br /&gt;
[[File:BGE-camera-shift.png|500px|thumb|center|D. Felinto, D. Poirier-Quinot and B. F.G. Katz, BlenderVR Projection (LIMSI-CNRS)]]&lt;br /&gt;
&lt;br /&gt;
== Physics engine changes ==&lt;br /&gt;
&lt;br /&gt;
* Angular velocity clamping is now possible ([https://developer.blender.org/D1365 D1365]), for an example see [https://developer.blender.org/F196941 D1365-limit-angular-velocity.blend].&lt;br /&gt;
* UI fix: velocity clamping now shows actual units as configured in the Blender scene panel, rather than raw Blender Units. ({{GitCommit|23aa425cd9097}})&lt;br /&gt;
&lt;br /&gt;
== 2D Filter ==&lt;br /&gt;
&lt;br /&gt;
* 2D Filter now supports integer properties as uniforms ([https://developer.blender.org/D1370 D1370]).&lt;br /&gt;
&lt;br /&gt;
== Python API changes ==&lt;br /&gt;
&lt;br /&gt;
=== New bge.app python submodule ===&lt;br /&gt;
&lt;br /&gt;
A new module (bge.app) has been added to access application values that remain unchanged during runtime. It provides similar -- but BGE-oriented -- features as the bpy.app submodule.&lt;br /&gt;
&lt;br /&gt;
bge.app contains the following attributes:&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code&amp;gt;version&amp;lt;/code&amp;gt;: The Blender/BGE version as a tuple of 3 ints, eg. (2, 75, 1).&lt;br /&gt;
* &amp;lt;code&amp;gt;version_string&amp;lt;/code&amp;gt;: The Blender/BGE version formatted as a string, eg. &amp;quot;2.75 (sub 1)&amp;quot;.&lt;br /&gt;
* &amp;lt;code&amp;gt;version_char&amp;lt;/code&amp;gt;: The Blender/BGE version character (for minor releases).&lt;br /&gt;
* &amp;lt;code&amp;gt;has_texture_ffmpeg&amp;lt;/code&amp;gt;: True if the BGE has been built with FFmpeg support, enabling use of bge.texture.ImageFFmpeg and bge.texture.VideoFFmpeg.&lt;br /&gt;
* &amp;lt;code&amp;gt;has_joystick&amp;lt;/code&amp;gt;: True if the BGE has been built with joystick support.&lt;br /&gt;
* &amp;lt;code&amp;gt;has_physics&amp;lt;/code&amp;gt;: True if the BGE has been built with physics support.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== KX_BlenderMaterial (specular, diffuse…) ===&lt;br /&gt;
&lt;br /&gt;
Material settings can be edited in python. The new attributes in KX_BlenderMaterial are:&lt;br /&gt;
*alpha (float)&lt;br /&gt;
*hardness (float)&lt;br /&gt;
*emit (float)&lt;br /&gt;
*specularIntensity (float)&lt;br /&gt;
*diffuseIntensity (float)&lt;br /&gt;
*specularColor (mathutils Color)&lt;br /&gt;
*diffuseColor (mathutils Color)&lt;br /&gt;
&lt;br /&gt;
An example is show in file : [https://dev-files.blender.org/file/data/rma6mqflwt5kvf67zibm/PHID-FILE-jrg4pw5zqcgsiqy6m26h/D1298-materialsettings.blend D1298-materialsettings.blend].&lt;br /&gt;
&lt;br /&gt;
(see commit {{GitCommit|145ab8c49efe0de188a55f4c682dd5fcf916f105}})&lt;br /&gt;
&lt;br /&gt;
=== bge.logic.get/setAnimRecordFrame ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;getAnimRecordFrame()&amp;lt;/code&amp;gt; gets the current frame number used for recording animations. This number is incremented automatically by Blender when the &amp;quot;Record animation&amp;quot; feature is turned on. &amp;lt;code&amp;gt;setAnimRecordFrame(framenr)&amp;lt;/code&amp;gt; sets that frame number, in case you want to override it. (see commit {{GitCommit|ba5807c2710939}} and [https://developer.blender.org/D1449 D1449]). An example is shown in [https://dev-files.blender.org/file/data/m5sfxtbcvxaefarcsz2z/PHID-FILE-wi2ayv2rjm6gk3usbve7/D1449-animrecordframe.blend D1449-animrecordframe.blend].&lt;br /&gt;
&lt;br /&gt;
These features allow you to record extra data into F-Curves, beyond what is already stored by the &amp;quot;Record Animation&amp;quot; feature.&lt;br /&gt;
&lt;br /&gt;
== KX_GameObject.getActionName() ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;getActionName(layer=0)&amp;lt;/code&amp;gt; gets the current action played for a specific layer. It allow you to know which action is played currently. Example file [https://dev-files.blender.org/file/data/vjx7ra7ircphnkn33krz/PHID-FILE-exho7hmnv7rgfxjeedhq/getActionName.blend getActionName.blend]&lt;br /&gt;
(see commit {{GitCommit|23f54076db6d241af2a8f9404ab5f5b8072a4db0}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Add alpha to coverage render mode ==&lt;br /&gt;
&lt;br /&gt;
[[File:Alpha-to-coverage.png|right|250px]]&lt;br /&gt;
[[File:Alpha-to-coverage-UI.png|right|250px]]&lt;br /&gt;
&lt;br /&gt;
Convert the pixel alpha value to a &amp;quot;coverage value&amp;quot; to determine how many samples will be influenced by this pixel. Using alpha-to-coverage will anti-aliased alpha mask edge and produce some smooth result when drawing foliage, trees, bushes. To use it go in material UI menu, game settings panel and set Alpha blend mode to &amp;quot;Alpha Anti-Aliasing&amp;quot;&lt;br /&gt;
(see commit {{GitCommit|749f346ce077f9616a47c03cac03f8537274efc4}})&lt;br /&gt;
&lt;br /&gt;
{{clr}}&lt;br /&gt;
&lt;br /&gt;
== Game Publishing Addon ==&lt;br /&gt;
&lt;br /&gt;
[[File:Game_engine_publishing.png|right|250px]]&lt;br /&gt;
&lt;br /&gt;
The addon is now out of beta and benefits of subtle UI changes, moving the platforms &amp;quot;publish&amp;quot; option and assets path chooser inside of their respective lists widgets.&lt;br /&gt;
&lt;br /&gt;
It also underwent some minor changes internally, fixing an issue with the &amp;quot;lib&amp;quot; folder (missing while downloading or manually adding builds to platforms list) and various code clean ups.&lt;br /&gt;
&lt;br /&gt;
{{clr}}&lt;br /&gt;
&lt;br /&gt;
== Compatibility Issues ==&lt;br /&gt;
&lt;br /&gt;
* Linked object layers are now respected in the Blenderplayer (see commit {{GitCommit|44384c698d394f6e7ed17b61e8406c867488aef9}})&lt;/div&gt;</summary>
		<author><name>wiki&gt;Tpanzer</name></author>
		
	</entry>
</feed>