Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
the custom map I'm in
а то зайдешь .. и пендосня.
Output+= "\n Altitude: " + Math.Round(Altitude, 2);
Change it to
Output+= "\n Altitude: " + Math.Round(Altitude-60000, 2);
а то я все вписывал 1,2,3 :
"How to use:
Press "1" to start calculation of planet center and fly horizontaly for 5-10 seconds.
Press "2" to stop script
Press "3" to stop planet center recalculation and continue only bearing and planetary coordinates calculation. "
(невидно было команды при наведении мыши на тулбар)
но на сервере не вышло (
I noticed that the longitude displayed increases when flying westward. This confused me, until I realized that your script obviously counts eastern longitudes as negative and western longitudes as positive. By definition this should be switched: Going east from the 0-meridian should give you positive longitude readings, while going west should give you negative readings.
Second question: you defined the 0-meridian by (x = 0, z = r). Was this a deliberate choice? We could also choose any of the other 3 points, like (x = r, z = 0) or (x = 0, z = -r) or (x = -r, z = 0). Or is there a special reason I just don't see?
И тут вроде не автопилот, а только определитель положения.
а мод автопилота - хочу в програмный блок т.к. не все ставят к себе его на сервер . автопилот то сделали чтоб работал, но этот модовый мне очень нравится. вот человек разбирающейся попался и по русски говорит - я и подумал может сделает
Добрый день.
А почему вы выкладываете работы только на стимовской площадке?
Можно расширить аудиторию благодаря ру-коммьюнити.
У нас есть отличная группа, благодаря нее можно иметь доп просмотры и фидбек на русском.
https://vk.com/spaceengineersgame
Благодарю.
default script timer setting:
const int Clock=15; which means, script runs each 15th Tick = 4 runs per second.
if you set Clock to 1, it will run each game tick = 60 runs/sec
if you set it to 60, it will run only once each second.
I'd like to find a balance between performance and update cycle.
Thank you!