本文整理匯總了TypeScript中rot-js.RNG類的典型用法代碼示例。如果您正苦於以下問題:TypeScript RNG類的具體用法?TypeScript RNG怎麽用?TypeScript RNG使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了RNG類的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: Animal
}
}
String.format.map['adjective'] = "adjective";
const cat = new Animal("cat");
template = "You see a %{adjective,black}.";
SHOW(template.format(cat));
// Keyboard Handling not included, as nothing ROT specific in there
// RNG / Generating random values
SHOW(
ROT.RNG.getUniform(),
ROT.RNG.getNormal(0, 10),
ROT.RNG.getPercentage()
);
// ----
const canvas = document.createElement("canvas");
canvas.width = 500;
canvas.height = 200;
SHOW(canvas);
const ctx = canvas.getContext("2d");
ctx!.fillStyle = "#fff";
ctx!.fillRect(0, 0, canvas.width, canvas.height);
ctx!.fillStyle = "#f00";