Shoes
Get the shoes IDs in the system.
BwApiShoesIds
Get the shoes IDs in the system.
Python
BwApi.ShoesIds()
C++
BwApiShoesIds(shoesIds);
C#
BwApi.ShoesIds();
Parameters
Param | Variable | Description |
Out | shoesIds | IDs of the shoes. |
Returns: Error/success code (see BwApiErrorCodes enum).
---
BwApiShoesAvatarsGet
Get all the avatars that configured with shoes by shoes id.
Python
BwApi.ShoesAvatarsGet(shoesId)
C++
BwApiShoesAvatarsGet(shoesId, avatars);
C#
BwApi.ShoesAvatarsGet(shoesId);
Parameters
Param | Variable | Description |
In | shoesId | ID of the shoes. |
Out | avatars | List of avatar ids that is configured with shoes. |
Returns: Error/success code (see BwApiErrorCodes enum).
---
BwApiShoesWear
Wear the shoes on the current avatar.
Python
BwApi.ShoesWear(shoesId)
C++
BwApiShoesWear(shoesId);
C#
BwApi.ShoesWear(shoesId);
Parameters
Param | Variable | Description |
In | shoesId | ID of the shoes. |
Returns: Error/success code (see BwApiErrorCodes enum).
---
BwApiShoesCurrentRemove
Remove the shoes on the current avatar.
Python
BwApi.ShoesCurrentRemove()
C++
BwApiShoesCurrentRemove();
C#
BwApi.ShoesCurrentRemove();
Returns: Error/success code (see BwApiErrorCodes enum).
---
BwApiShoesCurrentShow
Show the shoes on the current avatar.
Python
BwApi.ShoesCurrentShow()
C++
BwApiShoesCurrentShow();
C#
BwApi.ShoesCurrentShow();
Returns: Error/success code (see BwApiErrorCodes enum).
---
BwApiShoesCurrentHide
Hide the shoes on the current avatar.
Python
BwApi.ShoesCurrentHide()
C++
BwApiShoesCurrentHide();
C#
BwApi.ShoesCurrentHide();
Returns: Error/success code (see BwApiErrorCodes enum).
---
BwApiShoesCurrentTransformationGet
Get the current shoes transformation.
Python
BwApi.ShoesCurrentTransformationGet(side)
C++
BwApiShoesCurrentTransformationGet(side, jsonShoesTransformation);
C#
BwApi.ShoesCurrentTransformationGet(side);
Parameters
Param | Variable | Description |
In | side | Boolean (1/0) 0 for the left shoe, 1 - for the right shoe. |
Out | jsonShoesTransformation | JSON object as a string that represents an 3d transformation object (see transformation_3d.json schema). |
Returns: Error/success code (see BwApiErrorCodes enum).
---
BwApiShoesCurrentTransformationSet
Set the current shoes transformation.
Python
BwApi.ShoesCurrentTransformationSet(side, jsonShoesTransformation)
C++
BwApiShoesCurrentTransformationSet(side, jsonShoesTransformation);
C#
BwApi.ShoesCurrentTransformationSet(side, jsonShoesTransformation);
Parameters
Param | Variable | Description |
In | side | Boolean (1/0) 0 for the left shoe, 1 - for the right shoe. |
In | jsonShoesTransformation | JSON object as a string that represents an 3d transformation object (see transformation_3d.json schema). |
Returns: Error/success code (see BwApiErrorCodes enum).
---