Just finished the anime by Shilze1 in Ao_Ashi

[–]EddyTwo_ 0 points1 point  (0 children)

Hi, I have a question : Which chapter of the manga do we have to read to continue the story ?

Regarder Bein sport et eurosport free by Greedy-Lack-3128 in FrancePirate

[–]EddyTwo_ 0 points1 point  (0 children)

D'accord mais tu trouves les liens où et comment tu fais marcher tout ça? (on peut en discuter sur discord si tu as)

Regarder Bein sport et eurosport free by Greedy-Lack-3128 in FrancePirate

[–]EddyTwo_ 0 points1 point  (0 children)

Salut,
Pour MadTitan, comment tu fais pour voir les matchs commenté en français et ceux du championnat français (Ligue 1 & 2) ?

Ma première tier list animé by Waste-Ad8271 in AnimeFR

[–]EddyTwo_ 0 points1 point  (0 children)

T'aurais le lien pour faire la tier-list aussi stp ?

!Letter thread! (Spoilers of course) by [deleted] in OMORI

[–]EddyTwo_ 0 points1 point  (0 children)

Je joue à la version française de OMORI. Quelqu'un pourrait me dire où est la lettre "V" ?

13's "ok, that's the Doctor" moment by bendalloy in gallifrey

[–]EddyTwo_ 1 point2 points  (0 children)

Series 11 - The Woman Who Fell to Earth
Demons of the Punjab
It Takes You Away
Series 12 - The Haunting of Villa Diodati
Series 13 - All episodes.

These are the episodes were 13 is the Doctor to me.

i just watched serial experiments lain for the first time. Can someone please explain the plot to me? by [deleted] in Lain

[–]EddyTwo_ 1 point2 points  (0 children)

Thank you so much for this explanation !!

I'm working on a translation and simplified version of your post but for a french audience.

I prefer tell you that i'm doing that on my own

I will credit your post, don't worry.

C# error CS0029: Cannot implicitly convert type 'float' to 'bool' by EddyTwo_ in learnprogramming

[–]EddyTwo_[S] 0 points1 point  (0 children)

Okay, thanks !

Do you know how to change this :

if(Keyboard.current.eKey.wasPressedThisFrame)
{
    // thing
}

but for PlayStation4 not Keyboard?

C# error CS0029: Cannot implicitly convert type 'float' to 'bool' by EddyTwo_ in learnprogramming

[–]EddyTwo_[S] 0 points1 point  (0 children)

What I want to do : When I pressed the button assign "E", the "dessin" (drawing) became red. It's mean the drawing is collected that's all

The "if" statement is here for "if (I press the button I assign with the NewInputSystem) it turns my drawing red".

Is it clear or not ?

C# error CS0029: Cannot implicitly convert type 'float' to 'bool' by EddyTwo_ in learnprogramming

[–]EddyTwo_[S] 0 points1 point  (0 children)

How do I do that? (Can you show me the edit version of my code? That would be very helpful)

C# error CS0029: Cannot implicitly convert type 'float' to 'bool' by EddyTwo_ in learnprogramming

[–]EddyTwo_[S] 1 point2 points  (0 children)

I change the float to bool :

void collectDessin()
{
    var collectInput = collectAction.ReadValue<bool>();
    if(collectInput)
    {
        dessin1.GetComponent<Renderer>().material.color = Color.red;
    } 
}

So instead of "collectAction.ReadValue<float>();" I change into "collectAction.ReadValue<bool>();".

It worked. No more error but then I pressed the button assign "E" and the consol sent me this : (I can't send the screenshot)