-
Notifications
You must be signed in to change notification settings - Fork 45
/
index.html
60 lines (52 loc) · 1.88 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html>
<title>F.LF Main</title>
<xmp theme="projectf">
# F.LF
<img style='float:right; margin-left:20px;' src="https://github.com/Project-F/F.LF/raw/master/docs/Project%20F%20badge.png" width="120"/>
### the open source LF2
F.LF attempts a clean room implementation of the famous fighter game [LF2](http://lf2.net). The F stands for the effort of [Project F](http://project-f.github.io).
Check out the [latest demo](game/game.html).
<div style='clear:both'></div>
<iframe id='demo' src='' style='display:none; border:none; width:850px; height:650px;'></iframe>
## Summary
- motivation
- LF2 is the most amazing fighter game ___ever___
- had a global community of sprite and data changers
- ☹ but LF2 is close sourced and sometimes limiting
- with F.LF we can
- ✎ have complete freedom to modify
- ✉ no source code copyright issues
- ✈ play on a mobile phone
- ♛ continue the legend
- because F.LF is
- open source
- HTML5: works everywhere with a browser
- thriving for 99% compatibility with LF2
- we are calling for [contributors](docs/contribute.html), if you are a:
- programmer
- great! you can help the development
- data and sprite changer
- great! you can create mod like what you did for LF2
- you can help testing and fixing bugs
- game designer and developer
- awesome! we are close to production ready so keep [in touch](mailto:[email protected])
- read more
- [about the project](docs/project.html)
- [documentation set](docs/index.html)
- source code: repositories on [github.com/Project-F](https://github.com/Project-F)
</xmp>
<script>
setTimeout(function()
{
if( window.innerWidth > 800)
{
var demo=document.getElementById('demo');
demo.src='game/game.html?demo';
demo.style.display='';
}
},1200);
</script>
<script src="docs/projectfdocs.js"></script>
<script src="docs/strapdown_0_2/strapdown.js"></script>
</html>