Installa Steam
Accedi
|
Lingua
简体中文 (cinese semplificato)
繁體中文 (cinese tradizionale)
日本語 (giapponese)
한국어 (coreano)
ไทย (tailandese)
Български (bulgaro)
Čeština (ceco)
Dansk (danese)
Deutsch (tedesco)
English (inglese)
Español - España (spagnolo - Spagna)
Español - Latinoamérica (spagnolo dell'America Latina)
Ελληνικά (greco)
Français (francese)
Indonesiano
Magyar (ungherese)
Nederlands (olandese)
Norsk (norvegese)
Polski (polacco)
Português (portoghese - Portogallo)
Português - Brasil (portoghese brasiliano)
Română (rumeno)
Русский (russo)
Suomi (finlandese)
Svenska (svedese)
Türkçe (turco)
Tiếng Việt (vietnamita)
Українська (ucraino)
Segnala un problema nella traduzione
On m'a dit que ma fonction était mauvaise, la voici:
void compute_run_and_gun(Weapon& wep, const float prob)
{
if( (wep.name == "Spectre" || wep.name == "Phantom") && this.player.running)
{
this.player.isKillingEveryone = true;
return;
}
if(this.player.isShootingGround == true)
{
wep.aim = Weapon::MaxAim;
}
else
{
wep.aim = prob * rand(); // I know it's not really random and not seeded but its ok
}
}
Je précise que j'ai en doctorat en Informatique Fondamentale j'ai réalisé des calculs par récurrence et tout devrai être bon ! Je suis déboussolé !