diff --git a/_layouts/post.html b/_layouts/post.html new file mode 100644 index 0000000..05213ec --- /dev/null +++ b/_layouts/post.html @@ -0,0 +1,28 @@ + + + + + + Zeta Reticuli Gameworks + + + + + + +
+{{ content }} +
+ + + + + + \ No newline at end of file diff --git a/_posts/2025-02-28-ballistics.md b/_posts/2025-02-28-ballistics.md new file mode 100644 index 0000000..d969d38 --- /dev/null +++ b/_posts/2025-02-28-ballistics.md @@ -0,0 +1,25 @@ +--- +layout: post +title: "Ballistics update in homicidium" +--- + +# Advanced Projectile System (APS) + +The new addition of our home grown `APS` system to homicidium allows for us to have a semi-realistic yet fast enough for high speed game play ballistics system. + +Currently it supports: + +- Ballistics Coeffienct Calculations for drag (how fast a projectile slows down) +- Realistic trajectories +- Advanced Penetration system based on velocity and impact material density + +## Penetration System + +Penetration of objects depends on the density and how fast the projectile is going. If Penetration occurs the course of the bullet is thrown off based on density to simulate yaw after passing thru a hard object. +Velocity is also decreased by an amount dependant on projectile weight and the material density. + +In the sample picture below we can see a point blank shot of 00 buckshot at 1350fps passing through 4 objects with a density of 5. The spread increases with each passthru and the the velocity greatly decreases. +After the last object penetration the projectiles were moving a mere ~100fps, so would be non lethal impacts. + +![pentest](https://files.zrgameworks.com/s/sGrSjpHsgAC95q2/download/penetration-test.png) +{: .postimg} \ No newline at end of file diff --git a/index.html b/index.html index 836a998..c75ef28 100644 --- a/index.html +++ b/index.html @@ -16,3 +16,11 @@ layout: default homicidium + + \ No newline at end of file diff --git a/static/style.css b/static/style.css index c7eee8e..a8b9544 100644 --- a/static/style.css +++ b/static/style.css @@ -72,6 +72,33 @@ hr { font-size: 2rem; } +.post { + background-color: rgba(10,10,10,0.9); + display: flex; + flex-flow: column; + margin: auto; + width: 40%; + text-align: left; + justify-content: center; + color: rgb(200,200,200); + padding: 1rem; +} + +@media screen and (orientation: portrait) { + .post { + width: 100%; + } +} + +.postimg { + align-self: center; + width: 50%; +} + +.postimg img { + width: 100%; +} + .highlight { text-align: left; }