<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Godot &#8211; gill.nu</title>
	<atom:link href="https://gill.nu/tag/godot/feed/" rel="self" type="application/rss+xml" />
	<link>https://gill.nu</link>
	<description></description>
	<lastBuildDate>Wed, 10 Sep 2025 12:27:13 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://gill.nu/wp-content/uploads/2025/09/cropped-icon-32x32.png</url>
	<title>Godot &#8211; gill.nu</title>
	<link>https://gill.nu</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>How to hide mouse cursor in Godot Media Controller</title>
		<link>https://gill.nu/2025/09/09/how-to-hide-mouse-cursor/</link>
					<comments>https://gill.nu/2025/09/09/how-to-hide-mouse-cursor/#respond</comments>
		
		<dc:creator><![CDATA[Johan Gill]]></dc:creator>
		<pubDate>Tue, 09 Sep 2025 20:29:04 +0000</pubDate>
				<category><![CDATA[Pinball]]></category>
		<category><![CDATA[English content]]></category>
		<category><![CDATA[Godot]]></category>
		<category><![CDATA[Homebrew Pinball]]></category>
		<category><![CDATA[Instruction]]></category>
		<category><![CDATA[Mission Pinball Framework]]></category>
		<guid isPermaLink="false">https://gill.nu/?p=62</guid>

					<description><![CDATA[Simple instruction how to hide mouse cursor in GMC aka Godot Media Center.]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph"><em>This is a repost of my instruction that originally were posted in July 2024 and hosted at GillPinball Atlassian Confluence.</em><br>Instruction is written for GMC/Godot Media Controller and MPF/Mission Pinball Framework (<a href="https://missionpinball.org/">https://missionpinball.org/</a>) but shouldn&#8217;t differ much if programing anything else in Godot.</p>



<ol class="wp-block-list">
<li>Load your MPFWindow scene in Godot.</li>



<li>Add any Child Node, I suggest you add a label.</li>



<li>Make the label hidden so it don&#8217;t show up in all your scenes.</li>



<li>Right click on your Label and choose Attach script. Create the gd-script.</li>



<li>Go to Script at the top or double click the script in the FileSystem (inside Godot).</li>



<li>Add a function like below&#8230;. if you have another node than Label the extends differs.</li>
</ol>



<div class="wp-block-kevinbatdorf-code-block-pro cbp-has-line-numbers cbp-highlight-hover" data-code-block-pro-font-family="Code-Pro-JetBrains-Mono" style="font-size:.875rem;font-family:Code-Pro-JetBrains-Mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;--cbp-line-number-color:#D4D4D4;--cbp-line-number-width:calc(1 * 0.6 * .875rem);--cbp-line-highlight-color:rgba(234, 191, 191, 0.2);line-height:1.25rem;--cbp-tab-width:2;tab-size:var(--cbp-tab-width, 2)"><span style="display:flex;align-items:center;padding:10px 0px 10px 16px;margin-bottom:-2px;width:100%;text-align:left;background-color:#2b2b2b;color:#c7c7c7">GDScript</span><span role="button" tabindex="0" style="color:#D4D4D4;display:none" aria-label="Copy" class="code-block-pro-copy-button"><pre class="code-block-pro-copy-button-pre" aria-hidden="true"><textarea class="code-block-pro-copy-button-textarea" tabindex="-1" aria-hidden="true" readonly>extends Label

func _ready():
      Input.mouse_mode = Input.MOUSE_MODE_HIDDEN</textarea></pre><svg xmlns="http://www.w3.org/2000/svg" style="width:24px;height:24px" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path class="with-check" stroke-linecap="round" stroke-linejoin="round" d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4"></path><path class="without-check" stroke-linecap="round" stroke-linejoin="round" d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2"></path></svg></span><pre class="shiki dark-plus" style="background-color: #1E1E1E" tabindex="0"><code><span class="line"><span style="color: #569CD6">extends</span><span style="color: #4EC9B0"> Label</span></span>
<span class="line"></span>
<span class="line"><span style="color: #569CD6">func</span><span style="color: #D4D4D4"> </span><span style="color: #DCDCAA">_ready</span><span style="color: #D4D4D4">():</span></span>
<span class="line"><span style="color: #D4D4D4">      </span><span style="color: #4EC9B0">Input</span><span style="color: #D4D4D4">.</span><span style="color: #9CDCFE">mouse_mode</span><span style="color: #D4D4D4"> = </span><span style="color: #4EC9B0">Input</span><span style="color: #D4D4D4">.</span><span style="color: #9CDCFE">MOUSE_MODE_HIDDEN</span></span></code></pre></div>
]]></content:encoded>
					
					<wfw:commentRss>https://gill.nu/2025/09/09/how-to-hide-mouse-cursor/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
