readme.txt
来自「JME引擎的一个应用」· 文本 代码 · 共 61 行
TXT
61 行
Chapter 23. Shooting a Gun
From:
Killer Game Programming in Java
Andrew Davison
O'Reilly, May 2005
ISBN: 0-596-00730-2
http://www.oreilly.com/catalog/killergame/
Web Site for the book: http://fivedots.coe.psu.ac.th/~ad/jg
Contact Address:
Dr. Andrew Davison
Dept. of Computer Engineering
Prince of Songkla University
Hat Yai, Songkhla 90112, Thailand
E-mail: ad@fivedots.coe.psu.ac.th
If you use this code, please mention my name, and include a link
to the book's Web site.
Thanks,
Andrew
============================
Shooter3D.java
-----
Compilation:
$ javac *.java
// you must have Java 3D installed for the compilation to succeed;
// if you get "Warning" messages, please see the note below
Java 3D is available from http://java.sun.com/products/java-media/3D/
-----
Execution:
$ java Shooter3D
-----------
Note on "unchecked or unsafe operation" Warnings
As explained in chapter 3, I have not used J2SE 5.0's type-safe
collections, so that this code will compile in early versions of
J2SE (e.g. version 1.4).
The warning messages are always related to my use of collections
(e.g. ArrayList) without specifying a type for the objects they will
contain at run time.
No. of Warnings generated in J2SE 5.0 for the examples:
/Shooter3D: 9 warnings
---------
Last updated: 19th April 2005
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?