Skip to main content

Shoes

ShoesIds ShoesAvatarsGet ShoesWear ShoesCurrentR...

Updated over 2 months ago

ShoesIds

Get the shoes IDs in the system.

Python C++ C#

Python

BwApi.ShoesIds()

C++

BwApiShoesIds();

C#

BwApi.ShoesIds();

Parameters

Param

Variable

Description

Out

shoesIds

IDs of the shoes

Error/success code (see BwApiErrorCodes enum).

ShoesAvatarsGet

Get all the avatars that configured with shoes by shoes id.

Python C++ C#

Python

BwApi.ShoesAvatarsGet(shoesId)

C++

BwApiShoesAvatarsGet(shoesId);

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

Error/success code (see BwApiErrorCodes enum).

ShoesWear

Wear the shoes on the current avatar.

Python C++ C#

Python

BwApi.ShoesWear(shoesId)

C++

BwApiShoesWear(shoesId);

C#

BwApi.ShoesWear(shoesId);

Parameters

Param

Variable

Description

In

shoesId

ID of the shoes

Error/success code (see BwApiErrorCodes enum).

ShoesCurrentRemove

Remove the shoes on the current avatar.

Python C++ C#

Python

BwApi.ShoesCurrentRemove()

C++

BwApiShoesCurrentRemove();

C#

BwApi.ShoesCurrentRemove();

Error/success code (see BwApiErrorCodes enum).

ShoesCurrentShow

Show the shoes on the current avatar.

Python C++ C#

Python

BwApi.ShoesCurrentShow()

C++

BwApiShoesCurrentShow();

C#

BwApi.ShoesCurrentShow();

Error/success code (see BwApiErrorCodes enum).

ShoesCurrentHide

Hide the shoes on the current avatar.

Python C++ C#

Python

BwApi.ShoesCurrentHide()

C++

BwApiShoesCurrentHide();

C#

BwApi.ShoesCurrentHide();

Error/success code (see BwApiErrorCodes enum).

ShoesCurrentTransformationGet

Get the current shoes transformation.

Python C++ C#

Python

BwApi.ShoesCurrentTransformationGet(side)

C++

BwApiShoesCurrentTransformationGet(side);

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 Schema/v3.21/transformation/transformation_3d.json schema)

Error/success code (see BwApiErrorCodes enum).

ShoesCurrentTransformationSet

Set the current shoes transformation.

Python C++ C#

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 Schema/v3.21/transformation/transformation_3d.json schema)

Error/success code (see BwApiErrorCodes enum).

Did this answer your question?