You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
492 B
28 lines
492 B
9 months ago
|
//go:build example
|
||
|
// +build example
|
||
|
|
||
|
package entity
|
||
|
|
||
|
import (
|
||
|
"code.rocketnine.space/tslocum/gohan"
|
||
|
"code.rocketnine.space/tslocum/gohan/_examples/twinstick/component"
|
||
|
)
|
||
|
|
||
|
func NewBullet(x, y, xSpeed, ySpeed float64) gohan.EntityID {
|
||
|
bullet := gohan.NextEntityID()
|
||
|
|
||
|
bullet.AddComponent(&component.PositionComponent{
|
||
|
X: x,
|
||
|
Y: y,
|
||
|
})
|
||
|
|
||
|
bullet.AddComponent(&component.VelocityComponent{
|
||
|
X: xSpeed,
|
||
|
Y: ySpeed,
|
||
|
})
|
||
|
|
||
|
bullet.AddComponent(&component.BulletComponent{})
|
||
|
|
||
|
return bullet
|
||
|
}
|