| 870 | } |
| 871 | |
| 872 | ax::Rect GameObject::getOuterBounds(float a, float b) |
| 873 | { |
| 874 | ax::Rect r = getOuterBounds(); |
| 875 | r.origin.x += r.size.width / 2; |
| 876 | r.origin.y += r.size.height / 2; |
| 877 | r.size.width *= a; |
| 878 | r.size.height *= b; |
| 879 | r.origin.x -= r.size.width / 2; |
| 880 | r.origin.y -= r.size.height / 2; |
| 881 | return r; |
| 882 | } |
| 883 | |
| 884 | std::string_view GameObject::getGlowFrame(int objectID) |
| 885 | { |
no outgoing calls
no test coverage detected