本文整理汇总了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";