Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Node processing and physics processing cumulative (as opposed to delta) time #41850

Merged

Conversation

MohammadKhashashneh
Copy link
Contributor

@MohammadKhashashneh MohammadKhashashneh commented Sep 7, 2020

This includes the following new functions:

  • get_physics_process_cumulative_time()
    get_process_cumulative_time()
    Both return the cumulative time this node has been processing . Affected by the Node's pause state

  • get_physics_process_total_time()
    get_process_total_time()
    Both return the total time this tree has been processing regardless of the Node's paused state.

Bugsquad edit: This closes #6999.

@Calinou Calinou added enhancement topic:core cherrypick:3.x Considered for cherry-picking into a future 3.x release labels Sep 7, 2020
@Calinou Calinou added this to the 4.0 milestone Sep 7, 2020
@Calinou Calinou changed the title #6999 Add Node processing and physics processing cumulative (as opposed to delta) time. Add Node processing and physics processing cumulative (as opposed to delta) time Sep 7, 2020
@MohammadKhashashneh
Copy link
Contributor Author

This should fix issue #6999

@aaronfranke
Copy link
Member

aaronfranke commented Sep 10, 2020

Affected by / regardless of the pause state? I wonder if #39606 will affect this.

@MohammadKhashashneh
Copy link
Contributor Author

Affected by / regardless of the pause state? I wonder if #39606 will affect this.

I tested it against your branch and fortunately it seems to be working fine.

@MohammadKhashashneh MohammadKhashashneh force-pushed the cumulative-time_issue_6999 branch 2 times, most recently from d847bad to 1e4672a Compare February 8, 2021 16:57
@MohammadKhashashneh MohammadKhashashneh requested a review from a team as a code owner February 8, 2021 16:57
Copy link
Member

@Calinou Calinou left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The feature and documentation look good to me, but I'm a bit perplexed about the timers starting at 1.0.

@MohammadKhashashneh MohammadKhashashneh force-pushed the cumulative-time_issue_6999 branch from 9de7337 to 0c027ef Compare August 17, 2021 18:35
@Calinou
Copy link
Member

Calinou commented Aug 22, 2021

Tested locally, it works as expected:

time.mp4

Testing project: test_cumulative_time.zip

Copy link
Member

@Calinou Calinou left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks!

This PR will need a dedicated version for 3.x, as it is not trivial to cherry-pick.

@Calinou Calinou removed the cherrypick:3.x Considered for cherry-picking into a future 3.x release label Aug 22, 2021
@Calinou Calinou merged commit fb94b2e into godotengine:master Aug 22, 2021
@MohammadKhashashneh MohammadKhashashneh deleted the cumulative-time_issue_6999 branch August 22, 2021 08:46
@reduz
Copy link
Member

reduz commented Aug 22, 2021

I am not in favor of merging this, It's extremely easy to workaround with a line of script, plus it's confusing whether what kind of cumulative time it refers to.

@reduz
Copy link
Member

reduz commented Aug 22, 2021

I suggest more discussion happens on this before a decision is made, but as-is, this is just far too easy to work around with a line of script, and too rarely needed to justify additions into core (which must be kept as bloat-free as possible).

@MohammadKhashashneh MohammadKhashashneh restored the cumulative-time_issue_6999 branch August 22, 2021 14:51
@MohammadKhashashneh
Copy link
Contributor Author

@reduz well noted.
To tell you the truth, I would use such a feature if available out of the box to implement some synchronized or realtime-like behavior such as the ones in rhythm games. HOWEVER, it can be done using a script in a node not affected by pause.
Anyways, it's still here if ever needed again, and will create a PR for the 3.x branch then :)

@reduz
Copy link
Member

reduz commented Aug 22, 2021

@MohammadKhashashneh No worries, still thanks for taking the effort of doing a PR and dont feel discouraged! We are discussing some more QOL features for rythm games that hope will prove useful in the future.

@MohammadKhashashneh
Copy link
Contributor Author

@MohammadKhashashneh No worries, still thanks for taking the effort of doing a PR and dont feel discouraged! We are discussing some more QOL features for rythm games that hope will prove useful in the future.

@reduz Thank you and the rest of the crew for all your efforts :) and of course! not discouraged at all. I'm checking out what I can do next ;)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Access to cumulative processing time and fixed processing time from GDScript
4 participants