top of page

import sys

sys.path.append(RPR_GetResourcePath() + r"/UserPlugins")

from AZSTOKE_SILVER_python import *


def Msg(parm):

    RPR_ShowConsoleMsg(str(parm) + "\n")


random =AZ_GetRandomNumInteger(1,5)

Msg(random)

- SIMPLE SCRIPT -

random =AZ_GetRandomNumInteger(low,high)

- API -

ID

NUMBER

AZ_GetRandomNumInteger

対応バージョン:

1.0.0

以降

範囲内の整数をランダムに出力

- API Detail -

▼入力値

  • low(Int):数字の範囲(どこから、範囲に含む)

  • high(Int):数字の範囲(どこまで、範囲に含む)

▼出力値

  • random(Int):範囲内のランダムな整数

bottom of page