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

Entity counting #246

Open
SunSerega opened this issue Nov 13, 2022 · 0 comments
Open

Entity counting #246

SunSerega opened this issue Nov 13, 2022 · 0 comments
Labels
enhancement New feature or request

Comments

@SunSerega
Copy link

Is your feature request related to a problem? Please describe.
I needed a precise count of entities in a blueprint to perfect my logic circuit, but the game shows entity count with low precision when there are many of them.

Describe alternatives you've considered
I noticed that you currently output blueprint js object to the console when it's pasted. So I set a breakpoint to catch that object and run a simple script in the console:

let counts = {};
for (let e of t.blueprint.entities)
	counts[e.name] = (counts[e.name]??0) + 1;
console.log(counts);

This works but...

Describe the solution you'd like
Can you please make it a visual interface feature?

@SunSerega SunSerega added the enhancement New feature or request label Nov 13, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant