Jump to content

How to control recover/space center buttons during flight


Recommended Posts

I need to disable the ability to either recover, or  returning to the space center in the flight scene.

These are the two buttons which appear in the top middle of the screen when you move the mouse over the altimeter.

I have the following code:

	AltimeterSliderButtons _Recovery_button = (AltimeterSliderButtons)GameObject.FindObjectOfType (typeof(AltimeterSliderButtons));
	if (_Recovery_button != null && _Recovery_button.slidingTab.enabled) {
		_Recovery_button.slidingTab.enabled = false;
		_Recovery_button.spaceCenterButton.enabled = false;
		_Recovery_button.vesselRecoveryButton.enabled = false;
		Log.Info ("Recovery locked");		
	}

This does disable the two individual buttons, but the tab still slides down.  The line:  

_Recovery_button.slidingTab.enabled = false;

doesn't seem to be working, in that the panel still slides down.

Ideally, I'd like to prevent that top section from dropping down at all when the mouse moves on top.  

A pointer would be great!

Thanks in advance

LGG

Edited by linuxgurugamer
Link to comment
Share on other sites

This thread is quite old. Please consider starting a new thread rather than reviving this one.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...