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(베트남어)
Українська(우크라이나어)
번역 관련 문제 보고
If someone need a python or Unity3D of this, I will write one for a contest in the coming week:
https://github.com/EloiStree/2025_04_26_LiftoffTelemetryPyUnity
@Poison Dart Frag i just think about this eresterday, the problem is that i need it to fly continously in a track. opening a GUI would hinder the performance by a lot. i wonder if i can bind the PID change to a button or some sort?
Dunno if there's a platform independent equivalent for emulating analog inputs via scripts; on Linux you could use something like https://pypi.org/project/evdev/ I think.
I have not tested either of those modules with Liftoff yet, no idea if there will be any obstacles. And to be honest, I have no idea if that would be the best approach in the first place. Really, I don't have much idea what I'm talking about; this is mostly just stuff I had bookmarked for some projects I never got around starting.
netcat uses TCP by default, I should have called:
netcat -ul 127.0.01 9001
Now it works like a charm!
Alas, I tried adding this TelemetryConfiguration.json file:
{
"EndPoint": "127.0.0.1:9001",
"StreamFormat": [
"Timestamp",
"Position",
"Attitude",
"Velocity",
"Gyro",
"Input",
"Battery",
"MotorRPM"
]
}
and saved it in my ~/.config/unity3d/LuGus Studios/Liftoff/ directory (I'm running Steam on Ubuntu 22.04), but after I launch Liftoff and listen on the port:
netcat -l 127.0.0.1 9001
I don't get any data :(
I was looking for any clues in my Player.log file, but no info about the TelemetryConfiguration.json file being loaded.
Any hints on how to get this working / How to debug it?
I'm on my Windows 11 computer, running the game in Windows through steam.
When I place the .json file in the correct location and named correctly, i'm not getting any telemetry out from the udp port... I have checked the Player.log file and Player-prev.log, and I can see that it's not finding the .json file.. I have double and triple checked the location of the file and the structure of the .json file itself, and its according to the instruction in this thread...
What i'm concerned about is that the path to the .json file in the .log file is using a ""(backslash) to look for the .json file, instead of using "/"(forwardslash) in the path..
"Could not find a drone telemetry configuration file at C:/Users/magnu/AppData/LocalLow/LuGus Studios/LiftoffTelemetryConfiguration.json"
Any thoughts on what might be the problem?