Move agent

This commit is contained in:
Andras Schmelczer 2023-05-20 13:43:04 +01:00
parent 7dbeb2127c
commit 2f765a74a2
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
3 changed files with 3 additions and 3 deletions

View file

@ -1,7 +1,7 @@
import random from '../../../utils/graphics/random.wgsl';
import { smartCompile } from '../../../utils/graphics/smart-compile';
import { CommonState } from '../../common-state/common-state';
import { AGENT_SIZE_IN_BYTES, Agent } from '../agent';
import { AGENT_SIZE_IN_BYTES, Agent } from './agent';
import shader from './agent-generation.wgsl';
import agentSchema from './agent-schema.wgsl';

View file

@ -7,4 +7,4 @@ export interface Agent {
timeToLive: number;
}
export const AGENT_SIZE_IN_BYTES = 6 * Float32Array.BYTES_PER_ELEMENT;
export const AGENT_SIZE_IN_BYTES = 5 * Float32Array.BYTES_PER_ELEMENT;

View file

@ -1,7 +1,7 @@
import random from '../../utils/graphics/random.wgsl';
import { smartCompile } from '../../utils/graphics/smart-compile';
import { CommonState } from '../common-state/common-state';
import { AGENT_SIZE_IN_BYTES, Agent } from './agent';
import { AGENT_SIZE_IN_BYTES, Agent } from './agent-generation/agent';
import agentSchme from './agent-generation/agent-schema.wgsl';
import { AgentSettings } from './agent-settings';
import shader from './agent.wgsl';