好的,我做了一些学习的东西,我需要我的电梯停几秒钟 private IEnumerator ReversePlatform() { Yield return new WaitForSeconds(2); _AccuTime = 0...
好的,我做了一些学习工作,我需要让电梯停几秒钟
private IEnumerator ReversePlatform()
{
yield return new WaitForSeconds(2);
_AccuTime = 0;
speed = -speed;
}
我在这里打电话,我的电梯就开始摇晃并上升,它们不会下降
if (_AccuTime > _RunTime)
{
StartCoroutine("ReversePlatform");
}
else
{
transform.Translate(0, speed * Time.deltaTime, 0);
}
我需要它们上升,停留大约 2 秒,然后持续下降
我创建了一个应用程序,通过单击按钮自动启动 Zoom 会议,它似乎可以在 Windows 10 上运行,但在 Ubuntu 上却不行,我不确定它是否能在另一台机器上运行。我有一份
我创建了一个应用程序,通过单击按钮自动启动缩放会议,它似乎可以在 Windows 10 上运行,但不能在 Ubuntu 上运行,我不确定它是否可以在另一台机器上运行。我有一个定期会议列表,我将其详细信息集成到一个配置文件中,该文件包含会议的名称、小时、天数、无限期和密码。我试图调用缩放过程并通过单击按钮启动所选会议。它在我的 Windows 机器上运行良好,但在我的另一台 Ubuntu 机器上没有任何反应我尝试了这个函数,它应该被称为缩放过程,并给它配置文件中存在的连接信息
def lancer_zoom(nom_reunion):
try:
with open('config.json', 'r') as fichier:
donnees = json.load(fichier)
reunion = donnees.get(nom_reunion)
if reunion:
identifiant_reunion = reunion.get('identifiant')
mot_de_passe_reunion = reunion.get('mot_de_passe')
if identifiant_reunion and mot_de_passe_reunion:
commande_zoom = f'start "" "zoommtg://zoom.us/join?confno={identifiant_reunion}&pwd={mot_de_passe_reunion}"'
subprocess.run(commande_zoom, shell=True)
else:
print(f"Informations manquantes pour la réunion {nom_reunion}.")
else:
print(f"Réunion {nom_reunion} non trouvée.")
except FileNotFoundError:
print("Fichier de configuration introuvable.")