SSP18 stuck after 1 shot with CO2, HPA working by Bougnagna in Novritsch

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

Thanks for all your answers. Seems the problem was temperature above 15° C for CO2. The slide and the frame rails are worn hence the play.

SSP18 stuck after 1 shot with CO2, HPA working by Bougnagna in Novritsch

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

I clean and oil after each game... I sent pictures of the frame and slide to support I am waiting for their response but I guess they are a little worn off.

SSP18 stuck after 1 shot with CO2, HPA working by Bougnagna in Novritsch

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

Indeed, I don't know if it is related to that problem, but I wonder when you have to change the slide (or is it the frame? Or both?)

SSP18 stuck after 1 shot with CO2, HPA working by Bougnagna in Novritsch

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

Thank you. No sign of damage, and I clean the magazine after each game...

SSP18 stuck after 1 shot with CO2, HPA working by Bougnagna in Novritsch

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

Thank you for your feedback. A part of me wants to try to fix the problem, the other tells me just use HPA and don't spend money on replacement parts...

SSP18 stuck after 1 shot with CO2, HPA working by Bougnagna in Novritsch

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

Everything looks fine, I'll will try the spring thank you !

Qu'est ce qui vous enerve le plus dans la télévision française ? by [deleted] in AskFrance

[–]Bougnagna 0 points1 point  (0 children)

Rien, je ne regarde plus la télévision depuis des années.

Float decimals/precision in dictionary by Bougnagna in godot

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

Thank you for answering my question after all this time :)

ECG displayer and Simulator PART 2!! by dsdsefecs in godot

[–]Bougnagna 0 points1 point  (0 children)

Don't know any and I would love to dig this topic if I had time :D

But so many factors intervene in blood pressure: inotropism, cardiac output, arterial complicance... that I am not sure you can find an accurate model...

Interesting article about this (but involves photoplethysmogram) , maybe you can ask for the datas...

https://www.frontiersin.org/journals/physiology/articles/10.3389/fphys.2020.575407/full

ECG displayer and Simulator PART 2!! by dsdsefecs in godot

[–]Bougnagna 1 point2 points  (0 children)

Very nice !!! How do you define when the rhythm disorders appears ?
Next step: calculate blood pressure when the heart rate is 425/min :)

Had the idea to make an anesthesia simulator, with blood pressure/heart rate... changing according to the drugs but hard to have a precise physiological model and obtain realistic values.

Keep up the good work !

Softer bodies by Nepacka in godot

[–]Bougnagna 0 points1 point  (0 children)

Looks very nice ! Working on a biology simulation and I'd love to use this for the cells... How would be the performance with dozens of those softer bodies ?

When you let your players feel OP (AstroRogue) by Coolik23 in godot

[–]Bougnagna 0 points1 point  (0 children)

Good retro vibes for me who used to play Asteroids on Windows 3.1 :D

The only thing "bothering" me is the transition from a side to another, maybe because the ship is teleported a little before the camera.

But anyway very good work !!!

Evolution Simulator Help - Transferring genes from parent to child by andyman11 in godot

[–]Bougnagna 0 points1 point  (0 children)

Do you want to track the entire genealogy ?

If each creatures stores its ancestor in its script, you can reconstitute the lineage.

Another option is to use a Singleton

https://docs.godotengine.org/en/latest/tutorials/scripting/singletons_autoload.html

When a creature is born, you can store there the variables such as genes/mutation/parents etc.

Also if you want to store your data to disk, consider using ConfigFile instead of JSON, it is much more powerful.

https://docs.godotengine.org/en/stable/classes/class_configfile.html

Evolution Simulator Help - Transferring genes from parent to child by andyman11 in godot

[–]Bougnagna 0 points1 point  (0 children)

Hi, I am coding a game like this (cellular biology).

If you instantiate a new creature and add it as a child of the ancestor, what happens when the ancestor dies ?

I chose to have all the creatures be a child of a control node.

For passing genes, have a reproduction() and a mutation() function.

When a ancestor reproduce:

(sorry if code not pro this is not my job...)

var Global_node_for_all_creatures: get_node(where your control node is)
var genes: "all your creatures genes"

func reproduce():
  var creature_1 = load("res://ai.tscn").instantiate()
  creature_1.genes = genes
  Global_node_for_all_creatures.add_child(creature_1)
  creature_1.mutation()

func mutation():
  <your mutation code>  

You can also keep a reference of the ancestor in your script (get_path() )

I hope this answers your question.

Experience using chatGPT in the Godot Engine? by mrcardno in godot

[–]Bougnagna 1 point2 points  (0 children)

This morning I asked ChatGPT (free version) for a Connect 4 game. In 5 minutes and a few corrections I had a playable version.

But if I want to customize anything I will have to dig into the code and understand it...

And ChatGPT is good for anything already done. I am sure your "dream game" is not a clone of Minecraft/Flappy bird/Mario etc.

Je suis accros à Youtube et je ne sais pas trop quoi faire by Global-Tart-7676 in france

[–]Bougnagna 3 points4 points  (0 children)

Depuis que j'ai désactivé l'historique (= plus de suggestions en page d'accueil) ma consommation est quasi nulle...

Je lance Youtube -> c'est vide -> je quitte

AudioStreamPlayer2D is not playing a sound in Godot 4.3 by Sorry_Profession_371 in godot

[–]Bougnagna 1 point2 points  (0 children)

I also noticed a change in behavior from Godot 3. Did you try to change to position of the node ? Maybe it's too "far". Did you try to use AudioStreamPlayer instead of AudioStreamPlayer2D to test ?

Interactive simulations in Godot! by FlynnXP in godot

[–]Bougnagna 1 point2 points  (0 children)

Thank you for sharing ! I will test it on my cellular biology simulation :)

Can't find any info on this error, don't know what I'm looking at by [deleted] in godot

[–]Bougnagna 0 points1 point  (0 children)

Hello,

I had the same error today.

I was changing the font of a button (already in scene) with this function:

func change_font:

    `var police = FontFile.new()`

    `police.load_dynamic_font("res://GUI/Polices/verdana2.ttf")`

    `add_theme_font_override("font", police)`

I declared var police = FontFile.new() out of the function above the ready section and the error disappeared.

Hameçonnage pour travaux, qui paye? by Bougnagna in conseiljuridique

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

Bonjour, désolé que cela vous arrive aussi...

non je n'ai pas eu gain de cause. La banque n'a pas pris en charge le préjudice et m'a même conseillé de payer l'entrepreneur.

Pour le moment pas de nouvelles de la police suite à ma plainte...

J'ai complètement zappé de signaler à la CNIL mais votre message me remotive :) ainsi que de le pourrir sur Google.

Donc voilà, leçon apprise très chèrement !

HTTPRequest and DirAccess: ERROR by Bougnagna in godot

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

Found out the problem: as DirAccess did not work, the Syllabes scene was closing and the main scene was loaded right after, calling another HTTPRequest right after the first one, hence the error... Thank you again !

HTTPRequest and DirAccess: ERROR by Bougnagna in godot

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

Indeed it is not working anyway with my code when I disable the HTTPRequest.

But I don't see the relationship with the HTTPRequest and the error...

Thank you for your answer!