Merge pull request #6935 from Jessime/patch-1

loose -> lose typo in Container.js
This commit is contained in:
Richard Davey 2024-11-13 21:54:24 +00:00 committed by GitHub
commit d4700788a6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -57,7 +57,7 @@ var tempTransformMatrix = new Components.TransformMatrix();
*
* It's important to understand the impact of using Containers. They add additional processing overhead into
* every one of their children. The deeper you nest them, the more the cost escalates. This is especially true
* for input events. You also loose the ability to set the display depth of Container children in the same
* for input events. You also lose the ability to set the display depth of Container children in the same
* flexible manner as those not within them. In short, don't use them for the sake of it. You pay a small cost
* every time you create one, try to structure your game around avoiding that where possible.
*