Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Eva.js is a front-end game engine specifically for creating interactive game projects.

License

NotificationsYou must be signed in to change notification settings

eva-engine/eva.js

Repository files navigation

Eva.js logo

npm-versionnpm-sizenpm-download

English |Chinese

Introduction

Eva.js is a front-end game engine specifically for creating interactive game projects.

Easy to Use: Eva.js provides out-of-box game components for developers to use right away. Yes, it's simple and elegant!

High-performance: Eva.js is powered by efficient runtime and rendering pipeline (Pixi.JS) which makes it possible to unleash the full potential of your device.

Scalability: Thanks to the ECS(Entity-Component-System) structure, you can expand your needs by highly customizable APIs. The only limitation is your imagination!

Documentation

You can find the Eva.js Documentation oneva.js.org, we appreciate your devotion by sending pull requests tothis repository.

Checking out theLive example.

Usage

With NPM

npm i @eva/eva.js @eva/plugin-renderer @eva/plugin-renderer-img --save

In Browser

<scriptsrc="https://unpkg.com/@eva/eva.js@1.0.4/dist/EVA.min.js"></script>

Example

<canvasid="canvas"></canvas>
import{Game,GameObject,resource,RESOURCE_TYPE}from'@eva/eva.js';import{RendererSystem}from'@eva/plugin-renderer';import{Img,ImgSystem}from'@eva/plugin-renderer-img';resource.addResource([{name:'imageName',type:RESOURCE_TYPE.IMAGE,src:{image:{type:'png',url:'https://gw.alicdn.com/tfs/TB1DNzoOvb2gK0jSZK9XXaEgFXa-658-1152.webp',},},preload:true,},]);constgame=newGame({systems:[newRendererSystem({canvas:document.querySelector('#canvas'),width:750,height:1000,}),newImgSystem(),],});constimage=newGameObject('image',{size:{width:750,height:1319},origin:{x:0,y:0},position:{x:0,y:-319,},anchor:{x:0,y:0,},});image.addComponent(newImg({resource:'imageName',}));game.scene.addChild(image);

Questions

For questions and support please useGitter orWeChat (微信) to scanthis QR Code.

Issues

Please make sure to read theIssue Reporting Checklist before opening an issue. Issues not conforming to the guidelines may be closed immediately.

Changelog

release notes in documentation.

Contribute

How to Contribute

License

The Eva.js is released under the MIT license. SeeLICENSE file.

About

Eva.js is a front-end game engine specifically for creating interactive game projects.

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks

Contributors10


[8]ページ先頭

©2009-2025 Movatter.jp