Home | History | Annotate | Download | only in bullet

Lines Matching refs:entity

50 	public void add (final T entity) {
51 entities.add(entity);
55 final T entity = constructors.get(type).construct(x, y, z);
56 add(entity);
57 return entity;
61 final T entity = constructors.get(type).construct(transform);
62 add(entity);
63 return entity;
76 public void render (final ModelBatch batch, final Environment lights, final T entity) {
77 batch.render(entity.modelInstance, lights);