Attribution for F3 project devs

This commit is contained in:
SilentSpike 2015-07-17 16:45:16 +01:00
parent cfcb9fedb6
commit c48719a644
4 changed files with 21 additions and 3 deletions

View File

@ -51,6 +51,7 @@ Dharma Bellamkonda <dharma.bellamkonda@gmail.com>
Dimaslg <dimaslg@telecable.es> Dimaslg <dimaslg@telecable.es>
eRazeri eRazeri
evromalarkey <evromalarkey@gmail.com> evromalarkey <evromalarkey@gmail.com>
F3 Project <alanr@ferstaberinde.com>
Falke75 Falke75
Ferenczi Ferenczi
Ferenzi Ferenzi
@ -66,6 +67,7 @@ Hamburger SV
Harakhti <shadowdragonphd@gmail.com> Harakhti <shadowdragonphd@gmail.com>
havena <silveredenis@gmail.com> havena <silveredenis@gmail.com>
Hawkins Hawkins
Head
jokoho482 <jokoho482@gmail.com>` jokoho482 <jokoho482@gmail.com>`
Jonpas <jonpas33@gmail.com> Jonpas <jonpas33@gmail.com>
Kavinsky <nmunozfernandez@gmail.com> Kavinsky <nmunozfernandez@gmail.com>

View File

@ -6,8 +6,8 @@ class CfgPatches {
weapons[] = {}; weapons[] = {};
requiredVersion = REQUIRED_VERSION; requiredVersion = REQUIRED_VERSION;
requiredAddons[] = {"ace_common"}; requiredAddons[] = {"ace_common"};
author[] = {"voiper"}; author[] = {"F3 Project","Head","SilentSpike","voiper"};
authorUrl = "https://github.com/voiperr/"; authorUrl = "https://github.com/acemod";
VERSION_CONFIG; VERSION_CONFIG;
}; };
}; };

View File

@ -1,5 +1,5 @@
/* /*
* Author: SilentSpike * Author: F3 Project, Head, SilentSpike
* Handles camera manipulation according to input * Handles camera manipulation according to input
* *
* Arguments: * Arguments:

View File

@ -1,3 +1,19 @@
/*
* Author: F3 Project, Head, SilentSpike
* Processes the change in mouse position for the spectator camera
*
* Arguments:
* None <NIL>
*
* Return Value:
* None <NIL>
*
* Example:
* [] call ace_spectator_fnc_handleMouse;
*
* Public: No
*/
#include "script_component.hpp" #include "script_component.hpp"
private ["_x","_y","_leftButton","_rightButton","_oldX","_oldY","_deltaX","_deltaY"]; private ["_x","_y","_leftButton","_rightButton","_oldX","_oldY","_deltaX","_deltaY"];