19 lines
489 B
TypeScript
19 lines
489 B
TypeScript
export default {
|
|
worldSize: 1024,
|
|
antsCount: 12,
|
|
simulationStepsPerSecond: 60,
|
|
scentThreshold: 0.01,
|
|
scentFadeOutFactor: 0.001,
|
|
scentBlurRadius: 0.1,
|
|
scentMaxStorage: 1e6,
|
|
scentPerMarker: 200,
|
|
scentMaxPerCell: 10,
|
|
antSpeed: 1,
|
|
antRotationAngle: Math.PI / 30,
|
|
brushRadius: 20,
|
|
// per-channel pheromone params
|
|
repellentFadeOutFactor: 0.0005,
|
|
repellentBlurRadius: 0.05,
|
|
repellentMaxPerCell: 10,
|
|
repellentThreshold: 0.01,
|
|
};
|