安装 Steam
登录
|
语言
繁體中文(繁体中文)
日本語(日语)
한국어(韩语)
ไทย(泰语)
български(保加利亚语)
Čeština(捷克语)
Dansk(丹麦语)
Deutsch(德语)
English(英语)
Español-España(西班牙语 - 西班牙)
Español - Latinoamérica(西班牙语 - 拉丁美洲)
Ελληνικά(希腊语)
Français(法语)
Italiano(意大利语)
Bahasa Indonesia(印度尼西亚语)
Magyar(匈牙利语)
Nederlands(荷兰语)
Norsk(挪威语)
Polski(波兰语)
Português(葡萄牙语 - 葡萄牙)
Português-Brasil(葡萄牙语 - 巴西)
Română(罗马尼亚语)
Русский(俄语)
Suomi(芬兰语)
Svenska(瑞典语)
Türkçe(土耳其语)
Tiếng Việt(越南语)
Українська(乌克兰语)
报告翻译问题
Concept: Planets only move in a system when a player is actively looking at it, and are stationary otherwise.
Additional concept for if the human gets privy to this: Planets move only in systems that the player looked at within the last 60 seconds (or another similar, arbitrary time-frame). When looking at a new system that hasn't been looked at for longer than that time-frame, the positions of planets & moons are randomized. If there are ships in orbit of a planet to bombard it or whatever, they are teleported with the planet.
1. The mod only update the position of planets and other system assets when either the system screen is opened. I have not figured out how to update the position of planets while the system screen is open without a full refresh. Its possible... but heavy as planets and stations do not use the same processes as ships so my script method was less efficient.
2. All planet orbits were pre-calculated and stored in a table. The update algorithm then just uses the orbit number and the date to get the planets position. This caused issues with the binary, trinary, and quadnary systems in the game. Moons where awful.
3. For ship journey's I originally used the estimate of the length of the trip to calculate the planets position.This made for a slightly better calculation for the destination but resulted in the ships failing to enter orbit of the planet as it was off slightly due to the planet location recalcs. In the end I used another calc which reset the planets position when the ship entered the system but there were still issues.
In the end I abandoned the mod for my better star systems mod which made the system scale more accurate and made the second and greater stars either 'very close companions', 'distant companions' or 'very distant companions' where the close companion would be in the same system and the distant companions would spawn as stars virtually on top of the primary star on the galaxy map. Also included tight globular clusters with up to 10 stars practically on top of each other.
I originally did this to try and work around the binary issue with the planetary orbits mod... but eventually just preferred it for game play.