Adding individual pause to documentation

This commit is contained in:
Michael Thompson
2017-07-06 13:24:47 -07:00
committed by Jason Watkins
parent f1a460ebec
commit 3ce0a3a69a

View File

@@ -2,7 +2,7 @@ function pauseSim( pause, socket )
%pauseSim Pauses or unpauses X-Plane.
%
%Inputs
% pause: binary value 0=run, 1=pause
% pause: int 0= unpause all, 1= pause all, 2= switch all, 100:119= pause a/c 0:19, 200:219= unpause a/c 0:19
% socket (optional): The client to use when sending the command.
%
%Use
@@ -34,4 +34,4 @@ pause = int32(pause);
%% Send command
socket.pauseSim(pause);
end
end